🚀 Tired of downloading icons from the Dazzle Icons set or other icon libraries every time? Say goodbye to the hassle! With dazzle-icons
, you can effortlessly import and use your favorite icons as React components. It's that easy! 🎉
You can install the 'dazzle-icons' package via npm:
npm install dazzle-icons
or with Yarn:
yarn add dazzle-icons
Once installed, importing the icons into your React components is a breeze. Check out the example below:
import { WavePulse, Webcam, Weight } from "dazzle-icons";
const MyComponent = () => {
return (
<div>
<h1>Welcome to My App!</h1>
<WavePulse style={{ fontSize: "48px", color: "#00f" }} />
<Webcam style={{ fontSize: "48px", color: "#0f0" }} />
<Weight style={{ fontSize: "48px", color: "#f00" }} />
</div>
);
};
export default MyComponent;
This package is licensed under the MIT License. Feel free to use and modify as you wish!
We welcome contributions! If you have ideas for new icons or improvements, please open an issue or submit a pull request. Let's make dazzle-icons
even better together! 💪
A huge shoutout to the creators of the Dazzle Icons set for providing such an amazing resource! Your work inspires us all! 🙌
With dazzle-icons
, enhancing your project with beautiful icons has never been easier! Happy coding! 💻✨
``