UNPKG

@react95/core

Version:
19 lines (18 loc) 391 B
import React, { forwardRef } from "react"; import cn from "classnames"; 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: cn(input, rest.className), as: "textarea" } ) ); export { TextArea };