import styled from 'styled-components'; import { InputText } from '@buffetjs/core'; import { colors } from '@buffetjs/styles'; const InputUID = styled(InputText)` width: 100%; ${({ error }) => error && ` > input { border-color: ${colors.darkOrange}; } `} `; export default InputUID;