import * as React from "react" import { cn } from "@eloquent/styles" import { inputVariants } from "./variants" export const Root = React.forwardRef>( function Input({ className, type = "text", ...props }, ref) { return ( ) } )