@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
19 lines (17 loc) • 498 B
JavaScript
import { mergeCSS } from "../../core/css/merge-css.js";
import { Skeleton } from "./skeleton.js";
import { jsx } from "react/jsx-runtime";
//#region src/components/skeleton/skeleton-circle.tsx
const SkeletonCircle = (({ css,...rest }) => {
return /* @__PURE__ */ jsx(Skeleton, {
css: mergeCSS(css, {
"--height": "sizes.10",
"--width": "sizes.10"
}),
_loading: { rounded: "full" },
...rest
});
});
//#endregion
export { SkeletonCircle };
//# sourceMappingURL=skeleton-circle.js.map