react icons for the figma atomize design system
npm install atomize_icons> atomize_icons is only available for react right now.We'll be bringing atomize_icons to vanilla js and other frameworks soon
Icons in your React projects easily with atomize_icons, From the most popular open source figma design system Atomize Design System?type=design&node-id=1033-19838&mode=design&t=5j77olwtcDiaDrBX-0>)
``bash
yarn add atomize_icons
npm i atomize_icons
`
example usage
`jsx
import { About } from "atomize_icons";
function App() {
return (
CSS SUPPORT
> All css properties except properties that may lead to increase in Icon size like
font-size etc
> The reason why we chose not to include sizing is to keep the styles uniform across the whole design system
>
> > we are planning to implement the atomize design system for react nextie using the react
style prop`jsx
import { About } from "atomize_icons";function App() {
return (
);
}
`Using Vanilla css/sass/scss
`jsx
src/index.css
.style: {
color:red;
}import { About } from "atomize_icons";
function App() {
return (
);
}
`Using Tailwind CSS
> To use tailwind-css you must configure tailwindcss with react here
`jsx
import { About } from "atomize_icons";
function App() {
return ;
}
``