mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02:00
10 lines
256 B
TypeScript
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,
|
|
}));
|