UNPKG

@selfcommunity/react-ui

Version:

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

8 lines (7 loc) 389 B
import { TooltipProps } from '@mui/material'; import { SCCommunitySubscriptionTier } from '@selfcommunity/types'; export interface UpScalingTierProps extends Pick<TooltipProps, Exclude<keyof TooltipProps, 'children' | 'title'>> { className?: string; desiredTier?: SCCommunitySubscriptionTier; } export default function UpScalingTierBadge(inProps: UpScalingTierProps): JSX.Element;