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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="police-car" />
)
/** @deprecated Use PoliceCarIcon */
export const PoliceCar = I
export { I as PoliceCarIcon }