mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
13 lines (12 loc) • 527 B
TypeScript
import type { Variants } from './theme/default';
declare const BottomNav: import("react").ForwardRefExoticComponent<Pick<import("react").HTMLAttributes<HTMLDivElement>, "className" | "style"> & {
items: {
icon: React.ReactNode;
label?: string | React.ReactNode;
}[];
active?: number;
size: "auto" | "xs" | "sm" | "md" | "lg" | "xl";
color?: Variants | (string & {});
onChange?: (activeIndex: number) => void;
} & import("react").RefAttributes<HTMLDivElement>>;
export default BottomNav;