@ljcl/storybook-addon-cssprops
Version:
Interact with css custom properties dynamically in the Storybook UI
10 lines (9 loc) • 382 B
TypeScript
import * as React from "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) => React.JSX.Element;