General usage
# weight from 100 to 700 is available
npm install @material-symbols/svg-500
# or
npm install bootstrap-icons
# or
npm install heroicons
# or
npm install lucide-static# weight from 100 to 700 available
yarn add @material-symbols/svg-500
# or
yarn add bootstrap-icons
# or
yarn add heroicons
# or
yarn add lucide-static# weight from 100 to 700 available
pnpm add @material-symbols/svg-500
# or
pnpm add bootstrap-icons
# or
pnpm add heroicons
# or
pnpm add lucide-staticexport default {
component: {
UIcon: {
defaults: {
library: "@material-symbols/svg-500",
style: "outlined", // sharp | rounded | outlined
}
}
}
};export default {
component: {
UIcon: {
defaults: {
library: "bootstrap-icons",
}
}
}
};export default {
component: {
UIcon: {
defaults: {
library: "heroicons",
}
}
}
};Last updated