This commit is contained in:
github-actions[bot]
2026-01-18 03:14:49 +00:00
commit f3ee114735
336 changed files with 42224 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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;