UNPKG

@wix/design-system

Version:

@wix/design-system

23 lines 642 B
export default Skeleton; /** * Skeleton is a “placeholder” component. * Used for filling up screen usually for when some async operation is ongoing. */ declare class Skeleton extends React.PureComponent<any, any, any> { constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } declare namespace Skeleton { let displayName: string; namespace defaultProps { let alignment: string; let spacing: string; let content: { type: string; size: string; }[]; } } import React from 'react'; //# sourceMappingURL=Skeleton.d.ts.map