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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="eyedropper-sample" />
)
/** @deprecated Use EyedropperSampleIcon */
export const EyedropperSample = I
export { I as EyedropperSampleIcon }