Label.tsx 188 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
import styled from 'styled-components'
import { distance } from 'style/sizes'

const Label = styled.label`
    display: block;
    margin-bottom: ${distance.small};
`

export default Label