@sitecore/sc-contenthub-blok
Version:
A UI library for [Sitecore Content Hub](https://doc.sitecore.com/ch/).
10 lines (9 loc) • 409 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
import { PropsWithChildren } from "react";
import { type BlokLabeledIconProps } from "./BlokLabeledIcon";
type ComponentProps = PropsWithChildren<BlokLabeledIconProps>;
declare const meta: Meta<ComponentProps>;
export default meta;
type Story = StoryObj<ComponentProps>;
export declare const LabeledIcons: Story;
export declare const PlayGround: Story;