import * as React from "react"; import { View } from "react-native"; /** * This import is used by the Svelte SDK. Do not remove. */ export interface TextareaProps { attributes?: any; name?: string; value?: string; defaultValue?: string; placeholder?: string; required?: boolean; } import { filterAttrs } from "../../helpers"; import { setAttrs } from "../../helpers"; function Textarea(props: TextareaProps) { return ( ); } export default Textarea;