UNPKG

@kopexa/sight

Version:

Kopexa Sight Design System — React component library for GRC applications

17 lines (14 loc) 370 B
"use client"; // src/components/skeleton/skeleton.tsx import { skeleton } from "@kopexa/theme"; import { jsx } from "react/jsx-runtime"; var Skeleton = (props) => { const { className, children, ...rest } = props; const styles = skeleton({ className }); return /* @__PURE__ */ jsx("div", { className: styles, ...rest, children }); }; export { Skeleton };