10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
/* eslint-disable twenty/styled-components-prefixed-with-styled */
|
|
import styled from '@emotion/styled';
|
|
|
|
export const DropdownMenuSeparator = styled.div`
|
|
background-color: ${({ theme }) => theme.border.color.light};
|
|
height: 1px;
|
|
|
|
width: 100%;
|
|
`;
|