import React from 'react'; export interface IndicatorSettingsListSearchProps { value: string; onChange: (value: string) => void; totalCount: number; filteredCount: number; className?: string; } /** 보조지표 설정 목록 상단 검색 (지표 추가 팝업과 동일 UX) */ const IndicatorSettingsListSearch: React.FC = ({ value, onChange, totalCount, filteredCount, className = '', }) => (
onChange(e.target.value)} aria-label="보조지표 검색" /> {value.trim() ? `검색 결과 ${filteredCount} / ${totalCount}` : `전체 ${totalCount}개`}
); export default IndicatorSettingsListSearch;