box-ui-elements-mlh
Version:
21 lines (16 loc) • 517 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconMinus = ({ className = '', color = '#000000', height = 16, title, width = 16 }: Icon) => (
<AccessibleSVG
className={`icon-minus ${className}`}
height={height}
title={title}
viewBox="0 0 16 16"
width={width}
>
<path d="M2 5h8v2H2z" fill={color} fillRule="evenodd" />
</AccessibleSVG>
);
export default IconMinus;