Files
twenty/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerSection.tsx
2023-12-10 18:10:54 +01:00

10 lines
224 B
TypeScript

import styled from '@emotion/styled';
const StyledSection = styled.div`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.betweenSiblingsGap};
`;
export { StyledSection as NavigationDrawerSection };