@chayns-components/core
Version:
A set of beautiful React components for developing your own applications with chayns.
23 lines • 614 B
JavaScript
import React, { forwardRef } from 'react';
import { BaseSkeleton } from '../../base-skeleton/BaseSkeleton';
const CircleSkeleton = /*#__PURE__*/forwardRef(({
className,
baseColor,
highlightColor,
style,
animationType,
size
}, ref) => /*#__PURE__*/React.createElement(BaseSkeleton, {
width: size,
height: size,
borderRadius: "100%",
animationType: animationType,
baseColor: baseColor,
className: className,
style: style,
highlightColor: highlightColor,
ref: ref
}));
CircleSkeleton.displayName = 'Skeleton.Box';
export default CircleSkeleton;
//# sourceMappingURL=CircleSkeleton.js.map