UNPKG

@sitecore/sc-contenthub-blok

Version:

A UI library for [Sitecore Content Hub](https://doc.sitecore.com/ch/).

20 lines (19 loc) 609 B
import { type FC, type PropsWithChildren, type ReactNode } from "react"; import { type ColorName } from "../../Foundations"; import { type IconName } from "../BlokIcon/BlokIcon"; export interface BlokBadgeSlots { start?: ReactNode; end?: ReactNode; } export interface BlokBadgeProps { colorScheme?: ColorName; className?: string; expandedContent?: ReactNode; expandLabel?: string; collapseLabel?: string; iconName?: IconName; allowMultiline?: boolean; count?: number; slots?: BlokBadgeSlots; } export declare const BlokBadge: FC<PropsWithChildren<BlokBadgeProps>>;