9 lines
186 B
TypeScript
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%;
|
|
`;
|