storybook-addon-customize-antd-theme
Version:
a Storybook addon help you visually customize an ant design theme
12 lines (11 loc) • 364 B
TypeScript
import React from 'react';
declare type Level = 'section' | 'subsection';
export interface SectionRowProps {
label: string;
level: Level;
initialExpanded?: boolean;
colSpan: number;
children?: React.ReactNode;
}
export default function SectionRow({ level, label, children, initialExpanded, colSpan, }: SectionRowProps): JSX.Element;
export {};