UNPKG

@serendie/ui

Version:

Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric

31 lines (30 loc) 958 B
import { ComponentProps } from 'react'; import { RecipeVariantProps } from '../../../styled-system/css'; export declare const BottomNavigationItemStyle: import('../../../styled-system/types').SlotRecipeRuntimeFn<"icon" | "label" | "root" | "iconGroup" | "badge", { isActive: { true: { label: { color: "sd.system.color.impression.primary"; }; icon: { color: "sd.system.color.impression.primary"; }; }; }; dot: { true: { badge: { top: "-2.5px"; right: "4px"; }; }; }; }>; type Props = { icon: React.ReactNode; label: string; count?: number; }; export type BottomNavigationItemProps = Props & ComponentProps<"button"> & RecipeVariantProps<typeof BottomNavigationItemStyle>; export declare const BottomNavigationItem: React.FC<BottomNavigationItemProps>; export {};