1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00
unleash.unleash/frontend/src/component/menu/Footer/FooterTitle.tsx
2023-01-03 14:52:10 +01:00

10 lines
256 B
TypeScript

import { styled } from '@mui/material';
export const FooterTitle = styled('h2')(({ theme }) => ({
all: 'unset',
display: 'block',
margin: theme.spacing(2, 0),
fontSize: theme.fontSizes.bodySize,
fontWeight: theme.fontWeight.bold,
}));