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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="fallout-shelter" />
)
/** @deprecated Use FalloutShelterIcon */
export const FalloutShelter = I
export { I as FalloutShelterIcon }