UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

23 lines 616 B
import React, { forwardRef } from 'react'; import { BaseSkeleton } from '../../base-skeleton/BaseSkeleton'; const BadgeSkeleton = /*#__PURE__*/forwardRef(({ className, baseColor, highlightColor, style, animationType, width = 24 }, ref) => /*#__PURE__*/React.createElement(BaseSkeleton, { width: width, height: 24, borderRadius: "50%", animationType: animationType, baseColor: baseColor, className: className, style: style, highlightColor: highlightColor, ref: ref })); BadgeSkeleton.displayName = 'Skeleton.Badge'; export default BadgeSkeleton; //# sourceMappingURL=BadgeSkeleton.js.map