Docs
Sizing - DShapes
Sizing - DShapes
How to install dicons and download icons for your app.
This site is a work in progress. If you see dummy text on a page, it means I'm still working on it. You can follow updates on Twitter @designali_in.
By default, the size of all icons is 24px by 24px. The size is adjustable using the size prop and CSS.
Example
import { Abstract } from "dshapes";
function App() {
return (
<div className="app">
<Abstract size={64} />
</div>
);
}
export default App;