10 lines
139 B
TypeScript
10 lines
139 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const Separator = styled.div`
|
|
width: 10px;
|
|
height: 100%;`;
|
|
|
|
export default {
|
|
Separator,
|
|
};
|