mmk-icons
v0.0.32
Published
Icons for React and Next.js
Readme
Installation
npm install mmk-iconsFeatures
- Ready-to-use React Icons
- Full styling support (
className,fill,style) - Easy to scale, animate, and theme with Tailwind CSS or custom styles
- Tree-shakable and lightweight
Basic Usage
import { NextjsIcon } from 'mmk-icons';
const App = () => {
return <NextjsIcon />;
};
export default App;Custom Styling
import { NextjsIcon } from 'mmk-icons';
const App = () => {
return (
<NextjsIcon
className="text-neutral-900"
fill="white"
style={{ width: "30px", height: "30px" }}
/>
);
};
export default App;- <NextjsIcon />
+ <NextjsIcon
+ className="text-neutral-900"
+ fill="white"
+ style={{ width: "30px", height: "30px" }}
+ />Use any of the following:
ReactIcon
NextjsIcon
TailwindIcon
MongoDbIcon
PostgresIcon
SqlIcon
HtmlIcon
CssIcon
JsIcon
TsIcon
ReduxIcon
GraphQlIcon
ExpressIcon
DockerIcon
GitIcon
GoogleIcon
GitHubIcon
...and more
