import React from 'react'; import { Textarea } from '@cloudflare/component-textarea'; import { Base, BaseProps } from './Base'; export type TextareaProps = BaseProps< Omit, 'placeholder'>, ValueType >; export default function FormTextarea( props: TextareaProps ) { return ( , ValueType> // @ts-ignore Component={Textarea} {...props} /> ); }