35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
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;
|
|
}
|
|
|
|
const SkeletonAvatar: React.FC<AvatarProps> = ({ width, height }) => {
|
|
return (
|
|
<div className={`mt-1 rounded-full bg-gray-200 ltr:mr-2 rtl:ml-2 w-${width} h-${height} ${classNames}`} />
|
|
);
|
|
};
|
|
|
|
const SkeletonText: React.FC<SkeletonBaseProps> = ({ width, height }) => {
|
|
return <div className={`rounded-md bg-gray-200 w-${width} h-${height} ${classNames}`} />;
|
|
};
|
|
|
|
const SkeletonContainer: React.FC<SkeletonContainer> = ({ children, as }) => {
|
|
const Component = as || "div";
|
|
return <Component className="animate-pulse">{children}</Component>;
|
|
};
|
|
|
|
export { SkeletonAvatar, SkeletonText, SkeletonContainer };
|