1.0.0 • Published 1 year ago

@weave-design/skeleton-item v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Skeleton Item

The Skeleton Item component renders a rectangular loading indicator, meant to serve as a placeholder until your actual content is ready to be rendered.

Getting started

yarn add @weave-design/skeleton-item @weave-design/theme-context @weave-design/theme-data

Import the component

import SkeletonItem from '@weave-design/skeleton-item';

Basic usage

<SkeletonItem maxWidth="400px" marginBottom="24px" />

Custom CSS

Use the className prop to pass in a css class name to the outermost container of the component. The class name will also pass down to most of the other styled elements within the component.

SkeletonItem also has a stylesheet prop that accepts a function wherein you can modify its styles. For instance

import SkeletonItem from '@weave-design/skeleton-item';

function YourComponent() {
  // ...
  const customStylesheet = (styles, props, themeData) => ({
    ...styles,
    skeletonItem: {
      ...styles.skeletonItem,
      color: themeData["colorScheme.status.error"]
    }
  });

  return (
    <SkeletonItem stylesheet={customStylesheet} />
  );
}