mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-22 11:18:20 +02:00
* segment preview * fix: loading and font size inconsistencies * update segment accordion styles
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
divider: {
|
|
border: `1px dashed ${theme.palette.divider}`,
|
|
marginTop: theme.spacing(1),
|
|
marginBottom: theme.spacing(2),
|
|
},
|
|
}));
|