mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
infoText: {
|
|
marginBottom: '10px',
|
|
fontSize: theme.fontSizes.bodySize,
|
|
},
|
|
}));
|