UNPKG

@orfeas126/box-ui-elements

Version:
22 lines (17 loc) 599 B
// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import type { Icon } from '../flowTypes'; const IconAddThin = ({ className = '', color = '#222222', height = 17, title, width = 17 }: Icon) => ( <AccessibleSVG className={`icon-add-thin ${className}`} height={height} title={title} viewBox="0 0 17 17" width={width} > <path className="fill-color" d="M8 0h1v17H8z" fill={color} /> <path className="fill-color" d="M17 8v1H0V8z" fill={color} /> </AccessibleSVG> ); export default IconAddThin;