4 lines
185 B
TypeScript
4 lines
185 B
TypeScript
import type * as React from "react";
|
|
declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): import("react/jsx-runtime").JSX.Element;
|
|
export { Textarea };
|