@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
10 lines (9 loc) • 431 B
TypeScript
import React from 'react';
import { ISkeletonStandAlone } from './types/skeleton';
/**
* @description
* Skeleton coponents is a loading component that can be used to show a loading state of a component.
* @param {React.PropsWithChildren<ISkeletonStandAlone>} props
* @returns {JSX.Element}
*/
export declare const SkeletonStandAlone: React.ForwardRefExoticComponent<ISkeletonStandAlone & React.RefAttributes<HTMLDivElement>>;