1# to prevent typescript error, install this
2yarn add @types/styled-components
3
4# NPM
5npm install @types/styled-components
1interface YourProps {
2 invalid: boolean
3}
4
5const Input = styled.input`
6 border: ${(p: YourProps) => p.invalid ? 'red' : 'blue'};
7`
8