// @flow import * as React from 'react'; import classNames from 'classnames'; import AccessibleSVG from '../../../icons/accessible-svg'; type Props = { className?: string, color?: string, /** A text-only string describing the icon if it's not purely decorative for accessibility */ selected?: boolean, title?: string | React.Element, width?: number, }; const iconName = 'icon-relay'; const IconRelay = ({ className = '', color = '#c4c4c4', title, width = 14, selected = false }: Props) => ( ); export default IconRelay;