@churchapps/apphelper
Version:
Library of helper functions for React and NextJS ChurchApps
18 lines • 441 B
TypeScript
import React from "react";
interface Props {
badgeCount?: number;
url?: string;
target?: string;
label: string;
icon: string;
onClick?: () => void;
onNavigate?: (url: string) => void;
external?: boolean;
selected?: boolean;
deleteIcon?: string;
deleteLabel?: string;
deleteFunction?: () => void;
}
export declare const NavItem: React.FC<Props>;
export {};
//# sourceMappingURL=NavItem.d.ts.map