box-ui-elements
Version:
Box UI Elements
21 lines (16 loc) • 546 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconMinusThin = ({ className = '', color = '#222', height = 1, title, width = 9 }: Icon) => (
<AccessibleSVG
className={`icon-minus-thin ${className}`}
height={height}
title={title}
viewBox="0 0 9 1"
width={width}
>
<path className="fill-color" d="M0 0h9v1H0z" fill={color} fillRule="evenodd" />
</AccessibleSVG>
);
export default IconMinusThin;