@ljcl/storybook-addon-cssprops
Version:
Interact with css custom properties dynamically in the Storybook UI
14 lines (13 loc) • 396 B
TypeScript
import * as React from "react";
import type { CssPropertyItemGroup } from "./CssPropsTable/types";
import { DocsContext } from "@storybook/blocks";
interface CssPropsBlockProps {
customProperties: CssPropertyItemGroup;
}
declare global {
interface Window {
__DOCS_CONTEXT__: typeof DocsContext;
}
}
export declare const CssPropsBlock: React.FC<CssPropsBlockProps>;
export {};