import { cn } from "@/app/lib/cn"; import { SearchNormal } from "iconsax-reactjs"; import { FC } from "react"; export type InputVariant = "primary" | "search"; type Props = { variant?: InputVariant; className?: string; } & React.InputHTMLAttributes; const Input: FC = (props) => { const { variant = "primary", className, ...rest } = props; return (
{variant === "search" &&
); }; export default Input;