import React from 'react'; import { IconName } from '../../../Common/theming/icons'; import { MentorName } from '../../../Common/theming/mentors'; import { IllustrationName } from '../../../Common/theming/illustrations'; import { WithThemeProps } from '../../../Common/theming'; export interface SvgProps extends React.SVGProps<{}> { iconTitle?: string; iconName?: IconName | MentorName | IllustrationName; iconHtml?: string; dataFor?: string; } export interface SvgIconWrapperProps { className: string; color: string; height: any; width: any; dangerouslySetInnerHTML: any; dataFor?: string; children?: Array; } export declare type UpSvgIconProps = SvgProps & React.HTMLProps; declare const UpSvgIcon: React.StatelessComponent; export declare const UpSvgIconSparkles: React.StatelessComponent; export default UpSvgIcon;