// @flow import * as React from 'react'; import { bdlGray40 } from '../../styles/variables'; import AccessibleSVG from '../accessible-svg'; 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 IconDoubleArrows = ({ className = '', color = bdlGray40, height = 32, title, width = 32 }: Props) => ( ); export default IconDoubleArrows;