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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="arrow-bend-double-up-right" />
)
/** @deprecated Use ArrowBendDoubleUpRightIcon */
export const ArrowBendDoubleUpRight = I
export { I as ArrowBendDoubleUpRightIcon }