import React from 'react'; import { clsx } from 'clsx'; import { twMerge } from 'tailwind-merge'; export interface SkeletonProps { width?: string | number; height?: string | number; className?: string; rounded?: 'sm' | 'md' | 'lg' | 'full'; } const roundedMap: Record = { sm: 'rounded-sm', md: 'rounded-md', lg: 'rounded-lg', full: 'rounded-full', }; export const Skeleton: React.FC = ({ width, height, className, rounded = 'lg', }) => { return (