UNPKG

@datalayer/core

Version:
12 lines (11 loc) 430 B
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime"; /* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ import { SkeletonAvatar } from "@primer/react/experimental"; export const AvatarSkeleton = (props) => { const { size } = props; return (_jsx(_Fragment, { children: _jsx(SkeletonAvatar, { size: size }) })); }; export default AvatarSkeleton;