interface YourProps { invalid: boolean } const Input = styled.input` border: ${(p: YourProps) => p.invalid ? 'red' : 'blue'}; `