react-json-skeleton-loader
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

[Deploy Npm Publish

Installation

npm install react-json-skeleton-loader

Plugin

import JsonSkeletonLoader from 'react-json-skeleton-loader';

Component

Content

You can implement multiple types of skeleton loaders simultaneously using content property.

import JsonSkeletonLoader from 'react-json-skeleton-loader'

const temp = () => {
  return (
    <JsonSkeletonLoader
      defaultSize={{
        box: '100px',
        circle: '100px'
      }}
      content={[['box', 'title + text:3'], [text:3]]}
      />
  )
}
import JsonSkeletonLoader from 'react-json-skeleton-loader'

const temp = () => {
  return (
    <JsonSkeletonLoader
      defaultSize={{
        box: '100px',
        circle: '100px'
      }}
      content={[['box', 'blink', 'title + text:3'], ['text:3'], ['box', 'text:2']}
      />
  )
}

Options

Options allow you to implement different styles of Skeleton Loaders.

import JsonSkeletonLoader from 'react-json-skeleton-loader'

const temp = () => {
  return (
    <JsonSkeletonLoader
      defaultSize={{
        box: '100px',
        circle: '100px'
      }}
      options={{
        speed: 0.5,
        radius: 15,
        primaryColor: '#ffb0b0',
        secondaryColor: '#4c8bf5'
      }}
      content={[['box', 'title + text:3'], [text:3]]}
      />
  )
}

📝 License

Copyright © 2022. Built by INTEGRATION Corp.
This project is distributed under MIT license.

Readme

Keywords

none

Package Sidebar

Install

npm i react-json-skeleton-loader

Weekly Downloads

5

Version

0.0.9

License

none

Unpacked Size

27.8 kB

Total Files

11

Last publish

Collaborators

  • medistream.team
  • bowstring