UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

15 lines (14 loc) 492 B
import { jsx as _jsx } from "react/jsx-runtime"; import { CommentsObjectSkeleton } from '../CommentsObject'; import { PREFIX } from './constants'; import { styled } from '@mui/material/styles'; const classes = { root: `${PREFIX}-skeleton-root` }; const Root = styled(CommentsObjectSkeleton, { name: PREFIX, slot: 'SkeletonRoot' })(() => ({})); export default function CommentsFeedObjectSkeleton(props) { return _jsx(Root, Object.assign({ className: classes.root }, props)); }