'use client'; import { Icon, Input } from '@theme/components'; import React from 'react'; import { useLocalization } from '@akinon/next/hooks'; interface Props { handleChange: (e) => void; searchKey?: string; } export function FaqSearch(props: Props) { const { handleChange, searchKey } = props; const { t } = useLocalization(); return (