mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
24 lines
737 B
TypeScript
24 lines
737 B
TypeScript
import { Book } from 'phosphor-react'
|
|
import { VStack } from '../../elements/LayoutPrimitives'
|
|
import { StyledText } from '../../elements/StyledText'
|
|
import { theme } from '../../tokens/stitches.config'
|
|
import { DEFAULT_HEADER_HEIGHT } from './HeaderSpacer'
|
|
|
|
export function EmptyHighlights(): JSX.Element {
|
|
return (
|
|
<VStack
|
|
alignment="center"
|
|
distribution="center"
|
|
css={{
|
|
color: '$grayTextContrast',
|
|
textAlign: 'center',
|
|
marginTop: DEFAULT_HEADER_HEIGHT,
|
|
}}
|
|
>
|
|
<Book size={44} color={theme.colors.grayTextContrast.toString()} />
|
|
<StyledText style="fixedHeadline" css={{ color: '$grayTextContrast' }}>
|
|
No results found.
|
|
</StyledText>
|
|
</VStack>
|
|
)
|
|
}
|