@ionic/react
Version:
React specific wrapper for @ionic/core
17 lines (16 loc) • 532 B
TypeScript
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 {};