
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
react-skeleton-loader-pulse
Advanced tools
Skeleton Loader Pulse for ReactJS
npm install react-skeleton-loader-pulse
ou
yarn add react-skeleton-loader-pulse
import React from "react";
import { SkeletonItem } from "react-skeleton-loader-pulse";
export default function Component() {
return <SkeletonItem />;
}
property | propType | required | default | description |
---|---|---|---|---|
color | string | undefined | - | #ccc | Skeleton color |
pulseTime | number | undefined | - | 1 | pulse time |
width | string | number | undefined | - | 100px | width container component |
height | string | number | undefined | - | 10px | height container component |
marginTop | string | number | undefined | - | 0 | margin top component |
marginBottom | string | number | undefined | - | 0 | margin bottom component |
marginLeft | string | number | undefined | - | 0 | margin left component |
marginRight | string | number | undefined | - | 0 | margin right component |
borderRadius | string | number | undefined | - | 0 | border radius component |
import React from "react";
import { SkeletonLayout } from "react-skeleton-loader-pulse";
export default function Component() {
return (
<SkeletonLayout
align="center"
items={[
{
borderRadius: "50%",
height: 100,
marginBottom: 15,
width: 100,
},
{
height: 25,
marginBottom: 10,
width: 250,
},
{
height: 10,
width: 270,
},
{
height: 10,
width: 300,
},
{
height: 10,
width: 280,
},
]}
/>
);
}
property | propType | required | default | description |
---|---|---|---|---|
color | string | undefined | - | #ccc | Skeleton color |
pulseTime | number | undefined | - | 1 | pulse time |
width | string | number | undefined | - | 100% | width container component |
direction | "column" | "row" | undefined | - | column | flex-direction of layout |
align | "center" | "left" | "right" | undefined | - | left | align items of layout |
items | Item[] | yes | - | Layout: Array of objects |
property | propType | required | default | description |
---|---|---|---|---|
height | number | string | yes | - | height |
width | number | string | - | 100% | widtt |
borderRadius | number | string | - | 0 | border radius |
marginBottom | number | string | - | 3px | margin bottom |
marginTop | number | string | - | 3px | margin top |
marginLeft | number | string | - | 0 | margin left |
marginRight | number | string | - | 0 | margin right |
This project is licensed under the MIT License.
Development by: André Coelho
FAQs
Skeleton Loader Pulse for ReactJS
We found that react-skeleton-loader-pulse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.