@sitecore/sc-contenthub-blok
Version:
A UI library for [Sitecore Content Hub](https://doc.sitecore.com/ch/).
13 lines (12 loc) • 449 B
TypeScript
import { FC, PropsWithChildren } from "react";
import { type ColorName } from "../../Foundations";
import { type IconName } from "../BlokIcon/BlokIcon";
export interface BlokLabeledIconProps {
iconName?: IconName;
colorTarget?: "background" | "foreground";
fontSize?: string;
colorScheme?: ColorName;
className?: string;
isRound?: boolean;
}
export declare const BlokLabeledIcon: FC<PropsWithChildren<BlokLabeledIconProps>>;