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
make highlit of lines which are in change.Like bg-neutral-900
import { NextjsIcon } from 'mmk-icons';
const App = () => {
return (
<NextjsIcon />
);
};
export default App; then got to somthing that is not useful using this icons then run your app You can pass custom className, fill, styles and additional props... to icons
App.tsx
import { NextjsIcon } from 'mmk-icons';
const App = () => {
return (
<NextjsIcon
className="text-neutral-900"
fill="white"
style={{width:"30px",heigth:"30px"}}
/>
);
};
export default App;