import * as React from 'react'; export interface Globe32Props extends React.SVGProps { ariaLabel?: string } export default function Globe32({ ariaLabel, ...props }: Globe32Props) { return ( ); }