A React component library for beautiful high-quality SVG logos from svgl.app.
# with npm:
npm install svgl-react
# with yarn:
yarn add svgl-react
# with pnpm:
pnpm add svgl-react
# with bun:
bun add svgl-react
import { GitHub } from "svgl-react";
const MyComponent = () => {
return (
<div>
<GitHub />
</div>
);
};
- Allow custom props like sizes, color, wordmark, etc.
- Optimize package (tree-shaking, etc.)
All SVG logos are from @pheralb's svgl.app project. Thank you for the amazing work!
Check out @sujjeee's svgls
CLI to add logos to your project as SVGs instead. It's awesome and was my main inspo for this project!