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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="asclepius" />
)
/** @deprecated Use AsclepiusIcon */
export const Asclepius = I
export { I as AsclepiusIcon }