import { Search } from '@mui/icons-material' import clsx from 'clsx' import { forwardRef } from 'react' import { useTranslation } from 'react-i18next' import { SearchBarProps } from '@dao-dao/types' export const SearchBar = forwardRef( function SearchBar( { className, hideIcon, variant = 'lg', ghost, onIconClick, iconClassName, containerClassName, ...props }, ref ) { const { t } = useTranslation() return (
{!hideIcon && ( )}
) } )