UNPKG

@react95/core

Version:
10 lines (9 loc) 302 B
import React, { forwardRef } from "react"; import { Frame } from "../Frame/Frame.mjs"; import { input } from "../Input/Input.css.mjs"; const TextArea = forwardRef( (rest, ref) => /* @__PURE__ */ React.createElement(Frame, { ...rest, ref, className: input, as: "textarea" }) ); export { TextArea };