10 lines
149 B
JavaScript
Raw Normal View History

2019-11-06 16:29:19 +01:00
import styled from 'styled-components';
2019-11-08 16:29:51 +01:00
const Label = styled.div`
padding: 15px;
font-size: 13px;
font-weight: 600;
`;
2019-11-06 16:29:19 +01:00
export default Label;