revite/src/components/ui/LineDivider.tsx

10 lines
187 B
TypeScript
Raw Normal View History

2021-06-18 15:57:08 +01:00
import styled from "styled-components";
2021-06-18 14:20:57 +01:00
2021-06-18 15:18:10 +01:00
export default styled.div`
2021-07-05 11:23:23 +01:00
height: 0px;
opacity: 0.6;
flex-shrink: 0;
margin: 8px 10px;
border-top: 1px solid var(--tertiary-foreground);
2021-06-18 14:20:57 +01:00
`;