@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
13 lines (12 loc) • 483 B
TypeScript
import React, { FC, ReactNode } from "react";
import { StyledNavbar } from "../stitches/navbar";
import { LogoutProps, NavButtonsProps } from "../utils/types";
interface DivProps extends StitchesDivProps, NavButtonsProps, LogoutProps {
children?: ReactNode;
companyLogo?: string;
companyLogoAlt: string;
onHome: () => void;
}
declare type StitchesDivProps = React.ComponentProps<typeof StyledNavbar>;
export declare const Navbar: FC<DivProps>;
export {};