import React from "react"; import { cls } from "../util"; export type SkeletonProps = { width?: number; height?: number; className?: string; } export function Skeleton({ width, height, className }: SkeletonProps) { return ; }