mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
|
import { makeStyles } from '@material-ui/core/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
container: {
|
||
|
borderRadius: '12.5px',
|
||
|
backgroundColor: '#fff',
|
||
|
padding: '2rem',
|
||
|
},
|
||
|
}));
|