Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1 KB

README.md

File metadata and controls

48 lines (32 loc) · 1 KB

📦 svgl-react

A React component library for beautiful high-quality SVG logos from svgl.app.

svgl-react-compressed

🚀 Getting Started

Installation

# with npm:
npm install svgl-react

# with yarn:
yarn add svgl-react

# with pnpm:
pnpm add svgl-react

# with bun:
bun add svgl-react

Usage

import { GitHub } from "svgl-react";

const MyComponent = () => {
  return (
    <div>
      <GitHub />
    </div>
  );
};

🎯 Roadmap

  • Allow custom props like sizes, color, wordmark, etc.
  • Optimize package (tree-shaking, etc.)

🙏 Credits

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!