import React from 'react'; interface SearchInputProps { onSearch: (text: string) => void; } export const SearchInput: React.FC = ({ onSearch }) => { return (
{ if (event.key === 'Enter') { onSearch(event.currentTarget.value); } }} style={{ width: '200px', padding: '0.5rem', marginTop: '0.5rem', border: '1px solid #ccc', borderRadius: '4px', fontSize: '0.9rem', textAlign: 'left', }} />
); };