import type { InputHTMLAttributes, ReactNode } from 'react';
import { cn } from './cn';
import { motionColors } from './tokens';
export function SearchField({
icon,
className,
inputClassName,
...props
}: Omit, 'type'> & {
icon?: ReactNode;
inputClassName?: string;
}) {
return (
);
}