UNPKG

@sitecore/sc-contenthub-blok

Version:

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

14 lines (13 loc) 499 B
import type { Meta, StoryObj } from "@storybook/react"; import { PropsWithChildren } from "react"; import { BlokButtonSelectProps } from "./BlokButtonSelect"; type ComponentProps = PropsWithChildren<BlokButtonSelectProps<string, string>>; declare const meta: Meta<ComponentProps>; export default meta; type Story = StoryObj<ComponentProps>; export declare const optionsWithIcons: Array<{ icon: string; id: number; label: string; }>; export declare const BlokButtonSelectExamples: Story;