UNPKG

metadata-based-explorer1

Version:
33 lines (28 loc) 861 B
// @flow import * as React from 'react'; 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<any>, width?: number, }; const IconBreadcrumbArrow = ({ className = '', color = '#000000', height = 13, title, width = 8 }: Props) => ( <AccessibleSVG className={`icon-breadcrumb-arrow ${className}`} height={height} title={title} viewBox="0 0 8 13" width={width} > <path className="fill-color" d="M.1 11.3l4.6-4.5L.1 2.2 1.5.8l6 6-6 6-1.4-1.5z" fill={color} fillRule="evenodd" /> </AccessibleSVG> ); export default IconBreadcrumbArrow;