@ljcl/storybook-addon-cssprops
Version:
Interact with css custom properties dynamically in the Storybook UI
10 lines (9 loc) • 376 B
TypeScript
/// <reference types="react" />
import { CssPropertyItemGroup } from "./types";
export interface CssPropsTableProps {
customProperties: CssPropertyItemGroup;
presetColors?: string[];
storyId?: string;
inAddonPanel?: boolean;
}
export declare const CssPropsTable: ({ customProperties, presetColors, storyId, inAddonPanel, }: CssPropsTableProps) => JSX.Element;