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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="caret-up-down" />
)
/** @deprecated Use CaretUpDownIcon */
export const CaretUpDown = I
export { I as CaretUpDownIcon }