| 123456789101112131415161718192021222324252627282930313233343536373839404142 | import { useCallback } from 'react'import type { ChangeEvent } from 'react'import { useTranslation } from 'react-i18next'import s from './index.module.css'import cn from '@/utils/classnames'type SearchInputProps = {  value: string  onChange: (v: string) => void}const SearchInput = ({  value,  onChange,}: SearchInputProps) => {  const { t } = useTranslation()  const handleClear = useCallback(() => {    onChange('')  }, [onChange])  return (    <div className={cn(s['input-wrapper'], 'flex items-center px-2 h-7 rounded-md', `${value ? 'bg-white' : 'bg-gray-100'}`)}>      <div className={cn(s['search-icon'], 'mr-[6px] w-4 h-4')} />      <input        className='grow text-[13px] bg-inherit border-0 outline-0 appearance-none'        value={value}        onChange={(e: ChangeEvent<HTMLInputElement>) => onChange(e.target.value)}        placeholder={t('common.dataSource.notion.selector.searchPages') || ''}      />      {        value && (          <div            className={cn(s['clear-icon'], 'ml-1 w-4 h-4 cursor-pointer')}            onClick={handleClear}          />        )      }    </div>  )}export default SearchInput
 |