UNPKG

storybook-addon-customize-antd-theme

Version:
12 lines (11 loc) 364 B
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 {};