Includes only the SVG icons matched in your code and generates a CSS icon font set.
In this example you have all the almost 7.000 Google Material Design Icons collected by material-design-icons-updated, but you'll be able to include only the icons you effectively use inside your code:
const MyComponent = () => {
const icon = 'miu/filled/warning'
return <section className={ icon }>
<div className="grid desktop:grid-cols-4 miu/filled/add-chart tablet:grid-cols-2 grid-cols-1 desktop:gap-6 gap-12 desktop:auto-rows-fr desktop:items-end">
<i className="miu/filled/info"/>
<span className='bg-adjust-tone-01/24 miu/filled/error'/>
<div>
<footer title="miu/filled/close"></footer>
</div>
</div>
</section>
}
export default MyComponent@font-face {
font-family: "iconsauce";
src: url("data:font/truetype;charset=utf-8;base64,A...Z") format("truetype");
}
[class^="miu/"], [class*=" miu/"] {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: "iconsauce" !important;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 1;
}
.miu\/filled\/add-chart::before { content: "\ea02" }
.miu\/filled\/close::before { content: "\ea03" }
.miu\/filled\/error::before { content: "\ea04" }
.miu\/filled\/info::before { content: "\ea05" }
.miu\/filled\/warning::before { content: "\ea08" }Since v2.0.0 the configuration loader previously published as @iconsauce/config
is part of this package: IconsauceConfig and the Config type are exported
directly from @iconsauce/core.
Place config file in the root of your node project:
module.exports = {
content: [
'./static/**/*.{html,htm}',
'./templates/**/*.{js,jsx,ts,tsx}',
'./data/**/*.{json}',
'./layouts/**/*.{js}',
],
fontSize: '24px',
plugin: [
require('@iconsauce/material-icons'),
],
}For more info visit Configuration wiki