export type SkeletonProps = {
    animate?: 'wave' | 'pulse' | false
    type?: 'rounded' | 'rectangular' | 'circle'
    width?: number
    height?: number
    color?: string
    waveColor?: string
    className?: string
}
