mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
15 lines
420 B
TypeScript
15 lines
420 B
TypeScript
import { styled } from '@mui/material';
|
|
|
|
export const SectionHeader = styled('div')(({ theme }) => ({
|
|
fontWeight: theme.typography.fontWeightBold,
|
|
marginBottom: theme.spacing(1),
|
|
fontSize: theme.typography.body1.fontSize,
|
|
}));
|
|
|
|
export const StepperBox = styled('div')(({ theme }) => ({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
marginTop: theme.spacing(2),
|
|
}));
|