@trivle/material-symbols-react-24dp-wght100
v0.1.1
Published
Material Symbols 24dp (wght=100) as SVG React components with local caching
Readme
@trivle/material-symbols-react-24dp-wght100
Pixel-perfect Material Symbols (24dp, wght=100), as React components.
Install
npm i @trivle/material-symbols-react-24dp-wght100
peer deps: react ^18 || ^19
Usage
import {
LockIcon,
LockFillIcon,
} from "@trivle/material-symbols-react-24dp-wght100";
export function Demo() {
return (
<>
<LockIcon width={24} height={24} />
<LockFillIcon style={{ width: 24, height: 24 }} />
</>
);
}