@orfeas126/box-ui-elements
Version:
Box UI Elements
26 lines (22 loc) • 657 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconLeftArrow = ({ className = '', color = '#888888', height = 14, title, width = 12 }: Icon) => (
<AccessibleSVG
className={`icon-governance ${className}`}
height={height}
title={title}
viewBox="0 0 12 14"
width={width}
>
<path
className="stroke-color"
d="M9.5 4.5h-9m4-4l-4 4m4 4l-4-4"
fill="none"
stroke={color}
strokeLinecap="round"
/>
</AccessibleSVG>
);
export default IconLeftArrow;