PromucFlow_constructor/app/client/src/components/ads/MenuDivider.tsx

10 lines
265 B
TypeScript
Raw Normal View History

import styled from "styled-components";
const MenuDivider = styled.div`
2020-12-24 04:32:25 +00:00
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;