/* GENERATED FILE */
import { type Icon, type IconProps } from 'phosphor-react-native'

import IconBase from '../lib/icon-base'
import weights from '../defs/MedalMilitary'

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="medal-military" />
)
/** @deprecated Use MedalMilitaryIcon */
export const MedalMilitary = I
export { I as MedalMilitaryIcon }