Files
twenty_crm/front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerSectionTitle.tsx
2023-12-08 11:10:09 +01:00

20 lines
546 B
TypeScript

import styled from '@emotion/styled';
type NavigationDrawerSectionTitleProps = {
label: string;
};
const StyledTitle = styled.div`
color: ${({ theme }) => theme.font.color.light};
display: flex;
font-size: ${({ theme }) => theme.font.size.xs};
font-weight: ${({ theme }) => theme.font.weight.semiBold};
padding: ${({ theme }) => theme.spacing(1)};
padding-top: 0;
text-transform: uppercase;
`;
export const NavigationDrawerSectionTitle = ({
label,
}: NavigationDrawerSectionTitleProps) => <StyledTitle>{label}</StyledTitle>;