You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
import React from 'react'
import './font.module.css'
import styles from './styles.module.css'
import {makeStyles} from '@material-ui/core/styles'
import { Button } from '@material-ui/core'
import React from 'react'
import './font.module.css'
import styles from './styles.module.css'
import {makeStyles} from '@material-ui/core/styles'
import { Button } from '@material-ui/core'
const useStyles = makeStyles((theme) => ({
root: {
color: 'red',
fontFamily: '"Gotham"',
}
}))
export const CustomButton = ({ children }) => {
const classes = useStyles()
return (
{children}
)
}
when i try to add custom font with material ui then it not reflect my another project where i reuse this CustomButton component
The text was updated successfully, but these errors were encountered: