mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 10:07:57 +00:00
13 lines
464 B
TypeScript
13 lines
464 B
TypeScript
import type { ItemRoute } from './types.js';
|
|
import React from 'react';
|
|
interface Props {
|
|
className?: string;
|
|
classNameText?: string;
|
|
isLink?: boolean;
|
|
isToplevel?: boolean;
|
|
route: ItemRoute;
|
|
}
|
|
declare function Item({ className, classNameText, isLink, isToplevel, route: { Modal, href, icon, name, text, useCounter } }: Props): React.ReactElement<Props>;
|
|
declare const _default: React.MemoExoticComponent<typeof Item>;
|
|
export default _default;
|