revite/src/components/ui/LineDivider.tsx

10 lines
214 B
TypeScript
Raw Normal View History

2021-06-18 09:20:57 -04:00
import styled from 'styled-components';
export const LineDivider = styled.div`
height: 0px;
opacity: 0.6;
flex-shrink: 0;
margin: 8px 10px;
border-top: 1px solid var(--tertiary-foreground);
`;