revite/src/components/ui/LineDivider.tsx
2021-07-05 11:23:23 +01:00

9 lines
187 B
TypeScript

import styled from "styled-components";
export default styled.div`
height: 0px;
opacity: 0.6;
flex-shrink: 0;
margin: 8px 10px;
border-top: 1px solid var(--tertiary-foreground);
`;