PromucFlow_constructor/app/client/src/components/ads/MenuDivider.tsx
2020-12-24 10:02:25 +05:30

10 lines
265 B
TypeScript

import styled from "styled-components";
const MenuDivider = styled.div`
margin: ${(props) => props.theme.spaces[1]}px
${(props) => props.theme.spaces[6]}px;
border-top: 1px solid ${(props) => props.theme.colors.menuBorder};
`;
export default MenuDivider;