UNPKG

@react95/core

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