@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
49 lines • 1.05 kB
TypeScript
export interface Header {
logo?: Logo | boolean;
menu?: {
active?: boolean;
style?: object;
children?: Menu[];
onClick?: Function;
};
option?: {
active?: boolean;
style?: object;
children?: any;
};
side?: Side;
scale?: number;
height?: number;
color?: string;
style?: object & {
children?: object & {
children?: object & {
children?: object;
};
};
};
}
export interface Logo {
src?: string | Function | React.ReactElement;
url?: string;
width?: number;
height?: number;
title?: string;
alt?: string;
href?: string;
style?: object;
}
export interface Menu {
active?: boolean;
name?: string;
href?: string;
onClick?: Function;
}
export interface Side {
width?: number;
active?: boolean;
style?: object;
children?: any;
}
export default function Header(props: Header): import("react").JSX.Element;
//# sourceMappingURL=Header.d.ts.map