8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const Separator = styled.hr`
|
|
background: #eaeaea;
|
|
height: 1px;
|
|
border: 0;
|
|
`;
|