mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-15 03:35:01 -05:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
|
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);
|
||
|
`;
|