@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
14 lines (13 loc) • 418 B
TypeScript
import React from "react";
export interface SkeletonProps {
/**
* Element that need to displayed using the skeleton styles.
*/
children: JSX.Element | JSX.Element[];
}
/**
* `<Skeleton />` provides a loading state display of its children elements.
* It does not provide its own content.
*/
export declare function Skeleton({ children }: SkeletonProps): React.JSX.Element;
export default Skeleton;