Skip to content

Instantly share code, notes, and snippets.

@Dchole
Last active December 1, 2021 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dchole/9a25fd2a0f935d265572cc76a83a8e02 to your computer and use it in GitHub Desktop.
Save Dchole/9a25fd2a0f935d265572cc76a83a8e02 to your computer and use it in GitHub Desktop.
A custom link button with MaterialUI and next/link
// Usage
import ButtonLink from "@/components/ButtonLink"
function App() {
return (
<ButtonLink
href="/store"
variant="contained"
color="primary"
endIcon={<StoreIcon />}
>
Go to our store
</ButtonLink>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment