UNPKG

@react95/core

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