Created
October 12, 2020 17:59
-
-
Save TheEskhaton/cc5f6d0706d358fa2538461cbe4c4368 to your computer and use it in GitHub Desktop.
Chakra Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sample component from airbnb.com | |
<Box> | |
<Image rounded="md" src="https://bit.ly/2k1H1t6"/> | |
<Flex align="baseline" mt={2}> | |
<Badge variantColor="pink">Plus</Badge> | |
<Text | |
ml={2} | |
textTransform="uppercase" | |
fontSize="sm" | |
fontWeight="bold" | |
color="pink.800" | |
> | |
Verified • Cape Town | |
</Text> | |
</Flex> | |
<Text mt={2} fontSize="xl" fontWeight="semibold" lineHeight="short"> | |
Modern, Chic Penthouse with Mountain, City & Sea Views | |
</Text> | |
<Text mt={2}>$119/night</Text> | |
<Flex mt={2} align="center"> | |
<Box as={MdStar} color="orange.400" /> | |
<Text ml={1} fontsize="sm"><b>4.84</b> (190)</Text> | |
</Flex> | |
</Box> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment