UNPKG

@bottledbrains/ui

Version:

A React UI library based on Tailwind CSS

16 lines (15 loc) 425 B
import { FC, ReactNode } from "react"; import { CommonProps } from "../../types"; export interface FootNavItem extends CommonProps { name: string; text?: string; icon?: ReactNode; onClick?: () => void; } export interface FootNavProps extends CommonProps { items: FootNavItem[]; current: string; onChange?: (name: string) => void; } declare const FootNav: FC<FootNavProps>; export default FootNav;