1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/component/onboarding/SharedComponents.tsx
2024-09-05 15:21:27 +02:00

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),
}));