"use client"; import type { SearchInputProps } from "./Input.types"; export default function SearchInput({ value, onChange, onClear, className = "", ...props }: SearchInputProps) { return (
{value && onClear && ( )}
); }