import styled from 'styled-components'; import { theme } from '@veeqo/ui'; const { colors } = theme; export const Label = styled.label` display: flex; justify-content: space-between; align-items: center; padding: 1rem; border: 1px solid ${colors.neutral.grey.dark}; border-radius: 4px; &:hover { border-color: ${colors.secondary.blue.base}; cursor: pointer; } `; export const Input = styled.input` display: none; `;