@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
12 lines (11 loc) • 401 B
TypeScript
import React, { ReactChild, ReactNode } from "react";
declare type ThemeColors = (string | object)[];
export interface ColorContainerProps extends React.ComponentProps<"div"> {
/** Provide a text for the button */
children?: ReactChild | ReactNode[];
colors: ThemeColors;
colorRange: string;
}
/** Primary Color */
export declare const Colors: () => JSX.Element;
export {};