()
| 1 | import { Input, Textarea } from '@multion/ui'; |
| 2 | |
| 3 | const MDSInputExample = () => { |
| 4 | return ( |
| 5 | <div className="flex flex-col space-y-4"> |
| 6 | <Input type="email" placeholder="Email" variantSize={'small'} /> |
| 7 | <Input type="email" placeholder="Email" variantSize={'medium'} /> |
| 8 | <Input type="email" placeholder="Email" /> |
| 9 | <Textarea placeholder="Ask me to do anything" /> |
| 10 | </div> |
| 11 | ); |
| 12 | }; |
| 13 | |
| 14 | export default MDSInputExample; |
nothing calls this directly
no outgoing calls
no test coverage detected