rockui
Version:
React component library rock
14 lines (13 loc) • 432 B
TypeScript
import React from "react";
import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome';
export declare type ThemeProps = 'primary' | 'secondary' | 'success' | 'info' | 'danger' | 'warning';
export interface IconProps extends FontAwesomeIconProps {
theme?: ThemeProps;
}
/**
*
* @param props
* @license https://fontawesome.com/icons?d=gallery
*/
export declare const Icon: React.FC<IconProps>;
export default Icon;