import { Button, cn } from 'ui' export interface NoSearchResultsProps { searchString?: string withinTableCell?: boolean onResetFilter?: () => void className?: string label?: string description?: string } export const NoSearchResults = ({ searchString, withinTableCell = false, onResetFilter, className, label, description, }: NoSearchResultsProps) => { return (
{label ?? 'No results found'}
{description ?? `Your search for “${searchString}” did not return any results`}