@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
13 lines (12 loc) • 513 B
TypeScript
import { ComponentProps, FC } from "react";
import { StyledSvg } from "../stitches/icons";
import { ColorProps } from "../utils/types";
export declare type SvgProps = ComponentProps<typeof StyledSvg>;
export declare const LogoutIcon: FC<SvgProps>;
export declare const HomeIcon: FC<SvgProps>;
export declare const HamburgerIcon: FC<SvgProps>;
export declare const XIcon: FC<SvgProps>;
export declare const SettingsIcon: FC<SvgProps>;
export declare const LoadingIcon: FC<{
color?: ColorProps;
}>;