import * as React from 'react'; import { Skeleton, Card, Flex, Image, Text, Avatar, Button } from '@fluentui/react-northstar'; import { StarIcon, DownloadIcon, MoreIcon } from '@fluentui/react-icons-northstar'; import { useBooleanKnob } from '@fluentui/docs-components'; const SkeletonExampleCard = () => { const [loading] = useBooleanKnob({ name: 'Loading', initialValue: true, }); return ( {loading ? (
) : ( )}
{loading ? (
) : ( )}
{loading ? ( ) : (