These icons can be used in React and NextJS also
Simple usage of icons in your projects
The quickest way to use icons in your project,copy icon name and code given below and paste in your project.
App.tsx
import { NextjsIcon } from 'mmk-icons';
const App = () => {
return (
<NextjsIcon />
);
};
export default App;You can pass custom className, fill, styles and additional props... to icons
App.tsx
import { NextjsIcon } from 'mmk-icons';
const App = () => {
return (
<NextjsIcon
size="40"
className="text-neutral-900"
fill="white"
style={{height:"30px"}}
/>
);
};
export default App;