import * as React from "react"; import { Calendar } from "lucide-react"; import { cn } from "../../lib/utils"; export interface DateInputProps extends Omit, "type"> {} const DateInput = React.forwardRef( ({ className, ...props }, ref) => { return (
); } ); DateInput.displayName = "DateInput"; export { DateInput };