import { form, cn, type InputProps as InputVariants, } from "./design" import { type QwikIntrinsicElements, component$ } from '@builder.io/qwik'; export interface InputComponentProps extends Omit, InputVariants { label?: string; includeName?: string; labelFor?: string; description?: string; } export const Input = component$(({ labelFor,description, label, variant = "mixed", fancy = false, size = "md", includeName, class: className, ...props }: InputComponentProps) => { const { input } = form(); return (
{ label && labelFor && } {description &&

{description}

}
{includeName &&

{includeName} 

}
) }) // export const Input = qwikify$(ReactInput)