import SearchOff from '@mui/icons-material/SearchOff' import { NotFoundContainer, NotFoundIconContainer, NotFoundMessage, } from './SearchNotFound.style.js' interface SearchNotFoundProps { message: string adjustForStickySearchInput?: boolean } export const SearchNotFound = ({ message, adjustForStickySearchInput, }: SearchNotFoundProps) => ( {message} )