ComponentsInputOn this pageInputHTML Input with pre-applied styles.PropsAny HTML Input props.Example with codeimport Input from '@components/Input';const MyComponent = () => { return ( <Input type="text" placeholder="A text input" /> );};