import React from 'react'; import { Box } from './primitives/Box'; interface SkeletonProps { width?: string | number; height?: string | number; circle?: boolean; className?: string; } export function Skeleton({ width, height, circle, className = '' }: SkeletonProps) { return ( ); }