dazzle-icons v1.0.7
š Dazzle Icons
š 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! š
š¦ Installation
You can install the 'dazzle-icons' package via npm:
npm install dazzle-icons
or with Yarn:
yarn add dazzle-icons
ā” Usage
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;
š License
This package is licensed under the MIT License. Feel free to use and modify as you wish!
š¤ Contributing
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! šŖ
š Acknowledgements
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! š»āØ