import styled from 'styled-components'; export const TextWrapper = styled.div` text-align: left; user-select: none; line-height: 1; `; export const Input = styled.input` border: 1px solid ${({ theme }) => theme.colors.primary}; padding: 0; margin: 0; width: 95%; outline: none; height: 94%; display: inline-block; `;