"use client"; import Image from "next/image"; import search from "./icons/search.svg"; import { useTranslations } from "next-intl"; interface ISearchFormProps extends React.InputHTMLAttributes { handleSubmit: (e: React.MouseEvent) => void; } const SearchForm: React.FC = ({ handleSubmit, name, placeholder, value, onChange, style, }: ISearchFormProps) => { const t = useTranslations("general"); return (
Search button icon
); }; export default SearchForm;