@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
12 lines (11 loc) • 322 B
TypeScript
import { IKindLogo } from '@/ui/atoms/Logo';
import { IChildren } from '../../../types';
interface INavigation extends IChildren {
isSmall?: boolean;
kindLogo: IKindLogo | string;
classNameLogo?: string;
[rest: string]: any;
className?: string;
onClick?: () => void;
}
export type { INavigation };