UNPKG

@wulperstudio/cms

Version:
22 lines (21 loc) 572 B
import React from 'react'; interface IconsPropsModel { icon: React.ReactNode; text: string; toRoute?: () => void; active?: boolean; } export interface BottomBarModel { options: Array<IconsPropsModel>; variant?: 'float' | 'fixed'; isTextEnabled?: boolean; activeColor?: string; backgroundColor?: string; foregroundColor?: string; floatIconColor?: string; borderVariant?: 'none' | 'middle' | 'contained'; isDivider?: boolean; indexFloat?: number; } export declare const BottomBar: React.FC<BottomBarModel>; export {};