UNPKG

@icoms-detection/ui

Version:

This is the OFFICIAL UI library created by Icoms Detection to design their apps.

12 lines (11 loc) 531 B
import { ReactNode } from "react"; export declare type SizeProps = "2xs" | "xs" | "sm" | "base" | "lg" | "xl" | "2xl"; export declare type VariantProps = "primary" | "secondary" | "ghost" | "outline" | "text" | undefined; export declare type ColorProps = "primary" | "secondary" | undefined; export declare type InputTypesProps = "number" | "password" | "text" | "file" | undefined; export declare type LogoutProps = { onLogout: () => void; }; export declare type NavButtonsProps = { navButtons: ReactNode[]; };