import styled from 'styled-components'; import * as React from 'react'; const StyledCheckbox = styled.input` width: 15px; height: 15px; `; const StyledLabel = styled.label` font-size: 12px; `; export { StyledCheckbox, StyledLabel };