import { SVGProps } from "react"; import * as _$react_jsx_runtime0 from "react/jsx-runtime"; //#region src/react/globe.d.ts type GlobeIconProps = SVGProps & { /** Accessibility title for the icon, set aria-hidden="true" if the icon is purely decorative. */title?: string; /** * The size of the icon. * It sets the font-size, possible as the width and height is `1em`. If not set, the icon will inherit the font size of its parent. */ size?: '2xl' | 'xl' | 'large' | 'medium' | 'small'; /** * The color of the icon. * @default 'inherit' */ color?: 'inherit' | 'primary' | 'gray' | 'black' | 'white'; }; declare const GlobeIcon: ({ title, size, color, ...props }: GlobeIconProps) => _$react_jsx_runtime0.JSX.Element; //#endregion export { GlobeIconProps as n, GlobeIcon as t }; //# sourceMappingURL=globe-CEjrnSkT.d.mts.map