Empty highlights component

This commit is contained in:
Jackson Harper 2023-03-17 15:53:55 +08:00
parent baad0030ca
commit 8f6a8cc036

View file

@ -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 (
<VStack
alignment="center"
distribution="center"
css={{
color: '$grayTextContrast',
textAlign: 'center',
marginTop: '105px',
}}
>
<Book size={44} color={theme.colors.grayTextContrast.toString()} />
<StyledText style="fixedHeadline" css={{ color: '$grayTextContrast' }}>
No results found.
</StyledText>
</VStack>
)
}