UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

18 lines 540 B
/** * 2024-11-04: Migrated from PhotoForm */ /// <reference types="react" /> export type IFpsToggleLayout = 'inline' | 'labelUp'; export interface IFPSToggleProps { layout?: IFpsToggleLayout; label: string; onText: string; offText: string; disabled?: boolean; containerStyle?: React.CSSProperties; labelStyle?: React.CSSProperties; onOffTextStyle?: React.CSSProperties; forceChecked?: boolean; onChange?: (checked: boolean) => void; } //# sourceMappingURL=IFPSToggleProps.d.ts.map