Files
twenty/front/src/modules/ui/dropdown/components/DropdownMenuSeparator.tsx
Charles Bochet 6ced8434bd Uniformize folder structure (#693)
* Uniformize folder structure

* Fix icons

* Fix icons

* Fix tests

* Fix tests
2023-07-16 14:29:28 -07:00

9 lines
186 B
TypeScript

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