@kopexa/sight
Version:
Kopexa Sight Design System — React component library for GRC applications
19 lines (16 loc) • 504 B
JavaScript
"use client";
import {
Skeleton
} from "./chunk-DU3OVIBY.mjs";
// src/components/skeleton/skeleton-avatar.tsx
import { cn } from "@kopexa/shared-utils";
import { skeletonAvatar } from "@kopexa/theme";
import { jsx } from "react/jsx-runtime";
var SkeletonAvatar = (props) => {
const { size, className, ...restProps } = props;
const baseStyle = skeletonAvatar({ size });
return /* @__PURE__ */ jsx(Skeleton, { ...restProps, className: cn(baseStyle, className) });
};
export {
SkeletonAvatar
};