@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
24 lines (23 loc) • 734 B
TypeScript
/**
* CodeAnalizerComment: Updated 1 imports on 2024-09-21 23:07:24
* Update:: import { getSpreadIndexes } to '@mikezimm/fps-core-v7/lib/logic/Arrays/thinOutArray;'
*/
import * as React from 'react';
export interface IDotsHookWPProps {
maxDots: number;
titleProp?: string;
selectedLabel?: string;
containerStyle?: React.CSSProperties;
constainerClass?: string;
labelStyle?: React.CSSProperties;
iconStyle?: React.CSSProperties;
}
export interface IDotsHookProps {
items: any[];
current: number;
selectCallback: any;
dotsWPProps: IDotsHookWPProps;
}
declare const DotsHook: React.FC<IDotsHookProps>;
export default DotsHook;
//# sourceMappingURL=component.d.ts.map