import * as React from 'react'; export interface IconContext { color?: string; size?: string; className?: string; style?: React.CSSProperties; attr?: React.SVGAttributes; } export const DefaultContext: IconContext = { color: undefined, size: undefined, className: undefined, style: undefined, attr: undefined, }; export const IconContext: React.Context = React.createContext && React.createContext(DefaultContext);