import React, { forwardRef } from "react";
import { Frame } from "../Frame/Frame.mjs";
import { input } from "./Input.css.mjs";
const Input = forwardRef((rest, ref) => React.createElement(Frame, { ...rest, ref, className: input, as: "input" }));
export {
Input
};