@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
22 lines (21 loc) • 572 B
TypeScript
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 {};