@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
15 lines (14 loc) • 379 B
TypeScript
import * as React from 'react';
interface iProps {
/** optional: send the key for the group you want to open by default */
opened?: string;
fillHeight?: boolean;
groups: {
key: string;
title: string;
icon?: JSX.Element;
content: JSX.Element;
}[];
}
export declare const AccordionEX: React.FunctionComponent<iProps>;
export {};