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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="currency-krw" />
)
/** @deprecated Use CurrencyKrwIcon */
export const CurrencyKrw = I
export { I as CurrencyKrwIcon }