box-ui-elements-mlh
Version:
27 lines (22 loc) • 830 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import { bdlGray80 } from '../../styles/variables';
import type { Icon } from '../flowTypes';
const IconOpenWith = ({ className = '', color = bdlGray80, height = 16, title, width = 16 }: Icon) => (
<AccessibleSVG
className={`icon-open-with ${className}`}
height={height}
title={title}
viewBox="0 0 16 16"
width={width}
>
<path
className="fill-color"
fill={color}
fillRule="evenodd"
d="M12 2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 2v6h-1V6.71l-4.65 4.64-.7-.7L9.29 6H5V5h6z"
/>
</AccessibleSVG>
);
export default IconOpenWith;