diff --git a/packages/web/components/templates/homeFeed/EmptyHighlights.tsx b/packages/web/components/templates/homeFeed/EmptyHighlights.tsx new file mode 100644 index 000000000..204904acc --- /dev/null +++ b/packages/web/components/templates/homeFeed/EmptyHighlights.tsx @@ -0,0 +1,23 @@ +import { Book } from 'phosphor-react' +import { VStack } from '../../elements/LayoutPrimitives' +import { StyledText } from '../../elements/StyledText' +import { theme } from '../../tokens/stitches.config' + +export function EmptyHighlights(): JSX.Element { + return ( + + + + No results found. + + + ) +}