UNPKG

@selfcommunity/react-ui

Version:

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

26 lines (19 loc) 769 B
import { UserBillingInfoMode } from '../../constants/Billing'; /** * > API documentation for the Community-JS User Billing Info Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {UserBillingInfoSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCUserBillingInfoSkeleton-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCUserBillingInfoSkeleton-skeleton-root|Styles applied to the root element.| * */ export interface UserSkeletonBillingInfoProps { mode?: UserBillingInfoMode; } export default function UserBillingInfoSkeleton(props: UserSkeletonBillingInfoProps): JSX.Element | null;