import { ClassName } from "@helpers/types"; export interface SkeletonProps extends ClassName { width: number; height?: number; shape?: TSkeletonShape; animationType?: TAnimationType; } export type TSkeletonShape = "default" | "circle" | "rounded"; export type TAnimationType = "pulse" | "bounce" | "none";