import type { CSSProperties } from "react"; interface SkeletonProps { width?: string | number; height?: string | number; borderRadius?: string | number; className?: string; style?: CSSProperties; } export function Skeleton({ width, height = 16, borderRadius = 6, className = "", style }: SkeletonProps) { return (