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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="google-drive-logo" />
)
/** @deprecated Use GoogleDriveLogoIcon */
export const GoogleDriveLogo = I
export { I as GoogleDriveLogoIcon }