A lightweight React component library for displaying SVG icons.
npm install whales-icon-react
- 🚀 Lightweight and easy to use
- 💪 TypeScript support
- 🎨 Customizable size and color
- ⚡ Dynamic icon loading
- 🔄 React 16.8+ compatible
import { Icon } from 'whales-icon-react';
function App() {
return (
<Icon
name="your-icon-name"
size={24}
color="#000000"
className="custom-class"
/>
);
}