@i-novus/ui-core
Version:
Базовые UI компоненты
11 lines (10 loc) • 343 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import { ComponentBaseProps } from '../../core';
export interface CrumbTagProps extends ComponentBaseProps {
to: string;
}
export interface CrumbProps extends ComponentBaseProps {
path: string;
tag?: FC<CrumbTagProps>;
}
export declare const Crumb: FC<PropsWithChildren<CrumbProps>>;