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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="arrow-elbow-right-down" />
)
/** @deprecated Use ArrowElbowRightDownIcon */
export const ArrowElbowRightDown = I
export { I as ArrowElbowRightDownIcon }