@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
16 lines (9 loc) • 471 B
text/typescript
import { ReactNode } from "react";
export type SizeProps = "2xs" | "xs" | "sm" | "base" | "lg" | "xl" | "2xl";
export type VariantProps = "primary" | "secondary" | "ghost" | "outline" | "text" | undefined;
export type ColorProps = "primary" | "secondary" | undefined;
export type InputTypesProps = "number" | "password" | "text" | "file" | undefined;
export type LogoutProps = { onLogout: () => void };
export type NavButtonsProps = {
navButtons: ReactNode[];
};