Files
twenty/front/src/modules/ui/components/menu/DropdownMenuSeparator.tsx
2023-06-25 20:02:09 -07:00

9 lines
181 B
TypeScript

import styled from '@emotion/styled';
export const DropdownMenuSeparator = styled.div`
background-color: ${(props) => props.theme.lightBorder};
height: 1px;
width: 100%;
`;