@aivot/mui-material-symbols-400-outlined
v1.0.4
Published
Material Symbols for Material UI with weight 400 and style outlined
Downloads
20
Readme
MUI Material Symbols
This package contains the Material Symbols with the weight 400 in the style outlined for Material UI. It is based on the MUI Material Symbols repository.
Getting Started
Install this package via npm:
npm install @aivot/mui-material-symbols-400-outlinedUsage
Use these symbols like any other Material UI icon:
import SpaSymbol from '@aivot/mui-material-symbols-400-outlined/dist/spa/Spa';
import SpaFilledSymbol from '@aivot/mui-material-symbols-400-outlined/dist/spa/SpaFilled';
function MyComponent() {
return (
<div>
<SpaSymbol />
<SpaFilledSymbol />
</div>
);
}