import { Skeleton, Stack } from '@fidely-ui/react'
export const SkeletonBasic = () => {
return (
<Stack gap={3}>
{[1, 3, 4].map((d) => (
<Skeleton key={d} height={'25px'} />
))}
</Stack>
)
}
Usage
import { Skeleton, SkeletonText } from '@fidely-ui/react'<Stack gap="6" maxW="xs">
<Skeleton height="200px" />
<Skeleton height="200px" />
<Skeleton height="200px" />
</Stack>