function EmptyState()

in src/components/search/SearchResults.tsx [264:284]


  function EmptyState({
    title,
    subtitle,
    action,
  }: {
    title: any;
    subtitle: any;
    action: any;
  }) {
    return (
      <Box textAlign="center" color="inherit">
        <Box variant="strong" textAlign="center" color="inherit">
          {title}
        </Box>
        <Box variant="p" padding={{ bottom: "s" }} color="inherit">
          {subtitle}
        </Box>
        {action}
      </Box>
    );
  }