Answers for "styled components props typescript"

3

styled components props typescript

# to prevent typescript error, install this
yarn add @types/styled-components

# NPM
npm install @types/styled-components
Posted by: Guest on July-14-2020
3

styled components props typescript

interface YourProps {
  invalid: boolean
}

const Input = styled.input`
  border: ${(p: YourProps) => p.invalid ? 'red' : 'blue'};
`
Posted by: Guest on December-04-2020

Code answers related to "styled components props typescript"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language