aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/separator.tsx
blob: 1377bf706ffb86d6df5838759eb6f997cc46d036 (plain) (blame)
1
2
3
4
5
6
7
8
import * as React from 'react';
import styled from 'styled-components';

export const Separator = styled.hr`
    background: #EAEAEA;
    height: 1px;
    border: 0;
`;