@unicity/design-system
Version:
A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support
6 lines • 356 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { StyledSkeleton } from './Skeleton.style';
export const Skeleton = ({ variant = 'text', animation = 'pulse', width, height, ...props }) => {
return (_jsx(StyledSkeleton, { variant: variant, animation: animation, width: width, height: height, ...props }));
};
//# sourceMappingURL=Skeleton.js.map