import React from 'react'; import './SearchBar.css'; // SVG 图标组件 const SearchIcon = () => ( ); const ClearIcon = () => ( ); const SearchBar = ({ keyword, onKeywordChange }) => { return (
onKeywordChange(e.target.value)} placeholder="搜索官方名称、账号、用户名、邮箱、网站、标签..." className="search-input" /> {keyword && ( )}
); }; export default SearchBar;