Tldraw/packages/tldraw/src/components/Divider/Divider.tsx

13 wiersze
257 B
TypeScript

import * as React from 'react'
import { styled } from '~styles'
export const Divider = styled('hr', {
height: 1,
marginTop: '$1',
marginRight: '-$2',
marginBottom: '$1',
marginLeft: '-$2',
border: 'none',
borderBottom: '1px solid $hover',
})