@easy-shadcn/react
Version:
Use shadcn/ui easy&enhance like component library
24 lines (21 loc) • 751 B
JavaScript
import * as React from 'react';
import { cn } from '@easy-shadcn/utils';
import { jsx } from 'react/jsx-runtime';
var Input = React.forwardRef(
({ className, type, ...props }, ref) => {
return /* @__PURE__ */ jsx(
"input",
{
type,
className: cn(
"flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
className
),
ref,
...props
}
);
}
);
Input.displayName = "Input";
export { Input };