| 50 | } |
| 51 | |
| 52 | export interface SkeletonProps extends SkeletonStyleProps { |
| 53 | count?: number; |
| 54 | wrapper?: React.FunctionComponent<PropsWithChildren<unknown>>; |
| 55 | |
| 56 | className?: string; |
| 57 | containerClassName?: string; |
| 58 | containerTestId?: string; |
| 59 | |
| 60 | circle?: boolean; |
| 61 | style?: CSSProperties; |
| 62 | } |
| 63 | |
| 64 | export function Skeleton({ |
| 65 | count = 1, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…