UNPKG

rui-react

Version:
9 lines (8 loc) 372 B
import React from "react"; import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome"; export declare type ThemeProps = "primary" | "secondary" | "success" | "info" | "warning" | "danger" | "light" | "dark"; export interface IconProps extends FontAwesomeIconProps { theme?: ThemeProps; } export declare const Icon: React.FC<IconProps>; export default Icon;