Untitled UI icons for React.
npm install @untitled-theme/icons-react
import {Rocket01Icon} from '@untitled-theme/icons-react';
function Component() {
return <Rocket01Icon />;
}
or
import Rocket01Icon from '@untitled-theme/icons-react/Rocket01Icon';
function Component() {
return <Rocket01Icon />;
}
If you are using Next.js, we recommend adding it to optimizePackageImports
for performance. You can read more about it here.
// next.config.js
module.exports = {
experimental: {
optimizePackageImports: ['@untitled-theme/icons-react'],
},
};
See all icons here