import { Search, X } from 'lucide-react'; import { useTranslation } from 'react-i18next'; /* * SFR-02 공통컴포넌트: 검색 입력 */ interface SearchInputProps { value: string; onChange: (value: string) => void; placeholder?: string; className?: string; } export function SearchInput({ value, onChange, placeholder, className = '' }: SearchInputProps) { const { t } = useTranslation('common'); const effectivePlaceholder = placeholder ?? `${t('action.search')}...`; return (