Package Exports
- nucleo-micro-bold-essential
- nucleo-micro-bold-essential/package.json
Readme
nucleo-micro-bold-essential
A collection of 20px React SVG icon components from the Nucleo Micro Bold library.
Installation
npm install nucleo-micro-bold-essentialUsage
import { IconName } from 'nucleo-micro-bold-essential';
function MyComponent() {
return <IconName />;
}Browse the full list of available icons on the Nucleo Web App.
Customization
You can customise the icon size by passing the size prop to the icon component.
import { IconName } from 'nucleo-micro-bold-essential';
function MyComponent() {
return <IconName size={24} />;
}Alternatively, use CSS utility classes. E.g., when using TailwindCSS:
<IconName className="size-[24px] text-[blue]" />