\n {tabBar.props.slot === 'top' ? tabBar : null}\n
\n {outlet}\n
\n {tabBar.props.slot === 'bottom' ? tabBar : null}\n
\n );\n }\n\n static get contextType() {\n return NavContext;\n }\n}\n","export const isDevMode = () => {\n return process && process.env && process.env.NODE_ENV === 'development';\n};\n\nconst warnings: { [key: string]: boolean } = {};\n\nexport const deprecationWarning = (key: string, message: string) => {\n if (isDevMode()) {\n if (!warnings[key]) {\n console.warn(message);\n warnings[key] = true;\n }\n }\n};\n","import React from 'react';\n\nimport { NavContext } from '../contexts/NavContext';\n\nimport { IonicReactProps } from './IonicReactProps';\nimport { IonIconInner } from './inner-proxies';\nimport { createForwardRef, isPlatform } from './utils';\nimport { deprecationWarning } from './utils/dev';\n\ninterface IonIconProps {\n ariaLabel?: string;\n color?: string;\n flipRtl?: boolean;\n icon?: string;\n ios?: string;\n lazy?: boolean;\n md?: string;\n mode?: 'ios' | 'md';\n name?: string;\n size?: string;\n src?: string;\n}\n\ntype InternalProps = IonIconProps & {\n forwardedRef?: React.RefObject