react-icons/hi#HiCollection TypeScript Examples
The following examples show how to use
react-icons/hi#HiCollection.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HiUser.tsx From ksana.in with Apache License 2.0 | 5 votes |
export function HiUser({ user }: IHiUserProps) {
return (
<Stack as="section" spacing={8} mx={'auto'} mt="20" maxW={'lg'} py={12} px={6}>
<Stack align={'center'} spacing={8}>
<Heading
fontSize={{ base: '3xl', sm: '4xl', md: '5xl' }}
lineHeight={'110%'}
textAlign="center"
>
Selamat datang,{' '}
<Text color="orange.400" fontSize={{ base: 'lg', md: 'xl' }}>
{user ? user.email.split('@')[0] : ''}
</Text>
</Heading>
<Image
width={400}
height={400}
src={'/images/illustrations/ill_teamwork_by_manypixels.svg'}
alt="Teamwork"
/>
</Stack>
<Stack spacing={2} direction={'row'}>
<Button
px={6}
size="lg"
color={'white'}
bg="orange.400"
_hover={{
bg: 'orange.500'
}}
as={'a'}
href={'/dashboard'}
leftIcon={<HiCollection />}
>
Lihat dashboard
</Button>
<Button
px={6}
size="lg"
color={'white'}
bg="red.400"
_hover={{
bg: 'red.500'
}}
onClick={handleLogout}
leftIcon={<HiLogout />}
>
Keluar
</Button>
</Stack>
</Stack>
)
}