function createAvatarSkeleton createAvatarSkeleton(props?: { size?: "xs" | "sm" | "md" | "lg" | "xl"; } & Pick<SkeletonProps,"darkMode" | "animate" | "animation" | "class">): HTMLDivElement Create an avatar skeleton Examples Example 1 const skeleton = createAvatarSkeleton({ size: 'lg' }); Parameters optional props: { size?: "xs" | "sm" | "md" | "lg" | "xl"; } & Pick<SkeletonProps,"darkMode" | "animate" | "animation" | "class"> Return Type HTMLDivElement