@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
18 lines (17 loc) • 517 B
JavaScript
import Skeleton from "./Skeleton.js";
import SkeletonCardImage from "./Skeleton.CardImage.js";
import SkeletonRect from "./Skeleton.Rect.js";
import SkeletonText from "./Skeleton.Text.js";
/**
* Wrapper for repeating elements
*
* @see https://bifrost.intility.com/react/skeleton
*/
export default Object.assign(Skeleton, {
/** Rectangular box placeholder */
Rect: SkeletonRect,
/** Loading placeholder for `<Card.Image>` */
CardImage: SkeletonCardImage,
/** Text placeholder */
Text: SkeletonText
});