UNPKG

@ionic/react

Version:
17 lines (16 loc) 532 B
import React from 'react'; import type { IonicReactProps } from './IonicReactProps'; interface IonIconProps { color?: string; flipRtl?: boolean; icon?: string; ios?: string; lazy?: boolean; md?: string; mode?: 'ios' | 'md'; name?: string; size?: string; src?: string; } export declare const IonIcon: React.ForwardRefExoticComponent<IonIconProps & IonicReactProps & Omit<React.HTMLAttributes<HTMLIonIconElement>, "style" | "placeholder"> & React.RefAttributes<HTMLIonIconElement>>; export {};