UNPKG

ds-smart-ui

Version:

Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.

13 lines (12 loc) 477 B
import { CSSProperties } from 'react'; export interface SkeletonProps { variant?: "text" | "circular" | "rectangular" | "rounded"; width?: string | number; height?: string | number; animation?: "pulse" | "wave" | false; style?: CSSProperties; className?: string; id?: string; } declare const Skeleton: ({ variant, width, height, animation, style, className, id, }: SkeletonProps) => import("react/jsx-runtime").JSX.Element; export default Skeleton;