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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="crown-cross" />
)
/** @deprecated Use CrownCrossIcon */
export const CrownCross = I
export { I as CrownCrossIcon }