@svgr-iconkit/tabler-icons
v0.4.1
Published
Tabler Icons for @svgr-iconkit
Downloads
345
Maintainers
Readme
@svgr-iconkit/tabler-icons
Icons re-exported from tabler-icons.
Full details please check on website https://svgr-iconkit.dev/explorer/tabler-icons.
Usage
React Web
import Icon from '@svgr-iconkit/tabler-icons';
export default function App() {
return <div><Icon name="books" /></div>
}
React Native
import { View } from "react-native";
import Icon from '@svgr-iconkit/tabler-icons';
export default function App() {
return <View><Icon name="books" /></View>
}
Individual loading
import { View } from "react-native";
import Icon from '@svgr-iconkit/core';
import BooksIconContent from '@svgr-iconkit/tabler-icons/icons/regular/books';
export default function App() {
return <View><Icon content={BooksIconContent} /></View>
}