UNPKG

aurora-topu

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