// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { bdlNeutral03, white } from '../../styles/variables'; type Props = { className?: string, color?: string, height?: number, /** A text-only string describing the icon if it's not purely decorative for accessibility */ title?: string | React.Element, width?: number, }; const IconGlobe = ({ className = '', color = bdlNeutral03, height = 20, title, width = 20 }: Props) => ( ); export default IconGlobe;