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