UNPKG

tm-reuseable-components

Version:

This is a reuseable components lib made for TextMercato

10 lines (9 loc) 284 B
import { ReactNode } from "react"; export interface SkeletonProps { animation?: 'pulse' | 'wave' | false; children?: ReactNode; height?: number | string; variant?: 'circular' | 'rectangular' | 'rounded' | 'text'; width?: number | string; className?: string; }