UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

24 lines 649 B
/// <reference types="react" /> import { Alignment } from '@fluentui/react/lib/Stack'; export interface IToggleItem { label?: any; key: string; _onChange: any; checked: boolean; onText: string; offText: string; className?: any; styles?: any; } export interface IContentsToggles { toggles: IToggleItem[]; className?: any; style?: any; rootStyle?: any; vertical: boolean; vAlign: Alignment; hAlign: Alignment; childGap: number; } export declare function makeToggles(makeTheseToggles: IContentsToggles): JSX.Element; //# sourceMappingURL=toggleFieldBuilder.d.ts.map