UNPKG

lucid-ui

Version:

A UI component library from Xandr.

33 lines 2.11 kB
import React from 'react'; import { cxBackgroundGray } from './LoadingSkeletonsSvgUtil'; import LoadingSkeleton from './LoadingSkeleton'; export const CardSkeleton = (props) => { const { width = 130, height = 30, className } = props; return (React.createElement("div", { "data-test-id": 'loadingSkeleton-CardSkeleton', className: cxBackgroundGray('&', className) }, React.createElement("svg", { "data-test-id": 'loadingSkeleton-CardSkeleton-svg', width: width, height: height, xmlns: 'http://www.w3.org/2000/svg' }, React.createElement("g", { id: 'CardSkeleton-Details', stroke: 'none', strokeWidth: '1', fill: 'none', fillRule: 'evenodd' }, React.createElement("g", { id: 'CardSkeleton-Card', className: cxBackgroundGray('&', className), transform: 'translate(-20.000000, -78.000000)' }, React.createElement("path", { d: 'M120,95 L120,105 L20,105 L20,95 L120,95 Z M140,78 L140,88 L20,88 L20,78 L140,78 Z', id: 'CardSkeleton-Combined-Shape' })))))); }; const CardLoadingSkeleton = (props) => { return (React.createElement(LoadingSkeleton, { "data-test-id": 'loadingSkeleton-CardLoadingSkeleton', Skeleton: CardSkeleton, ...props })); }; CardLoadingSkeleton.displayName = 'CardLoadingSkeleton'; CardLoadingSkeleton.peek = { description: `A loading indicator wrapper with optional overlay.`, notes: { overview: ` A visual indication that a section or component of the interface is loading. Designed to indicate loading data `, intendedUse: ` - Use in places where data takes time to load. CardLoadingSkeleton lets users know that the information they expect to see will appear shortly. `, technicalRecommendations: ` If a page is displaying a lot of data coming from multiple sources, try as best as possible to load the individual parts of the UI, so as not to disrupt the user and block them from interacting with the entire page until all data is loaded. `, }, categories: ['Loading Indicator'], }; export default CardLoadingSkeleton; //# sourceMappingURL=CardLoadingSkeleton.js.map