@gravity-ui/uikit
Version:
Gravity UI base styling and components
7 lines (6 loc) • 340 B
TypeScript
import type * as React from 'react';
import type { QAProps } from "../types.js";
import "./Skeleton.css";
export interface SkeletonProps extends Pick<React.HTMLAttributes<HTMLDivElement>, 'className' | 'style'>, QAProps {
}
export declare function Skeleton({ className, style, qa }: SkeletonProps): import("react/jsx-runtime").JSX.Element;