UNPKG

@selfcommunity/react-ui

Version:

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

28 lines (21 loc) 898 B
import { PaymentProductSkeletonProps } from '../PaymentProduct/Skeleton'; import { Grid2Props } from '@mui/material/Unstable_Grid2'; export interface CommunityPaywallsSkeletonProps extends Grid2Props { className?: string; PaymentProductSkeletonComponentProps?: PaymentProductSkeletonProps; } /** * > API documentation for the Community-JS CommunityPaywall Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {CommunityPaywallSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCCommunityPaywallSkeleton-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCCommunityPaywallSkeleton-skeleton-root|Styles applied to the root element.| * */ export default function CommunityPaywallsSkeleton(inProps: any): JSX.Element;