UNPKG

@sitecore/sc-contenthub-blok

Version:

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

9 lines (8 loc) 318 B
import { FC, type PropsWithChildren } from "react"; export interface BlokButtonGroupProps { variant?: "normal" | "square" | "rounded"; orientation?: "horizontal" | "vertical"; fullWidth?: boolean; className?: string; } export declare const BlokButtonGroup: FC<PropsWithChildren<BlokButtonGroupProps>>;