Created
November 28, 2022 08:21
-
-
Save izaakwalz/c008772293ce8c08e53366d3eabe19c6 to your computer and use it in GitHub Desktop.
how to integrate remixicon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'remixicon/fonts/remixicon.css'; | |
export default function Icon({ icon, className }) { | |
return <i className={`${icon} ${className} cursor-pointer`} />; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment