UNPKG

@selfcommunity/react-ui

Version:

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

35 lines (28 loc) 959 B
export interface CategoriesSkeletonProps { /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * Overrides or extends the styles applied to the component. * @default null */ CategorySkeletonProps?: any; } /** * > API documentation for the Community-JS Categories Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {CategoriesSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCCategories-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCCategories-skeleton-root|Styles applied to the root element.| |categories|.SCCategories-categories|Styles applied to the categories' element.| * */ export default function CategoriesSkeleton(inProps: CategoriesSkeletonProps): JSX.Element;