import classNames from "@calcom/lib/classNames"; type SkeletonBaseProps = { width: string; height: string; className?: string; }; interface AvatarProps extends SkeletonBaseProps { // Limit this cause we don't use avatars bigger than thi width: "2" | "3" | "4" | "5" | "6" | "8"; height: "2" | "3" | "4" | "5" | "6" | "8"; } interface SkeletonContainer { as?: keyof JSX.IntrinsicElements; children?: React.ReactNode; } const SkeletonAvatar: React.FC = ({ width, height }) => { return (
); }; const SkeletonText: React.FC = ({ width, height }) => { return
; }; const SkeletonButton: React.FC = ({ width, height }) => { return (
); }; const SkeletonContainer: React.FC = ({ children, as }) => { const Component = as || "div"; return {children}; }; export { SkeletonAvatar, SkeletonText, SkeletonButton, SkeletonContainer };