chore: Upgrade Prettier 1.8 -> 2.0 (#1436)
This commit is contained in:
@ -15,13 +15,13 @@ export type Props = {
|
||||
|
||||
const LabelText = styled.span`
|
||||
font-weight: 500;
|
||||
margin-left: ${props => (props.small ? "6px" : "10px")};
|
||||
${props => (props.small ? `color: ${props.theme.textSecondary}` : "")};
|
||||
margin-left: ${(props) => (props.small ? "6px" : "10px")};
|
||||
${(props) => (props.small ? `color: ${props.theme.textSecondary}` : "")};
|
||||
`;
|
||||
|
||||
const Wrapper = styled.div`
|
||||
padding-bottom: 8px;
|
||||
${props => (props.small ? "font-size: 14px" : "")};
|
||||
${(props) => (props.small ? "font-size: 14px" : "")};
|
||||
`;
|
||||
|
||||
const Label = styled.label`
|
||||
|
Reference in New Issue
Block a user