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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="sneaker-move" />
)
/** @deprecated Use SneakerMoveIcon */
export const SneakerMove = I
export { I as SneakerMoveIcon }