box-ui-elements-mlh
Version:
22 lines (17 loc) • 606 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconCheck = ({ className = '', color = '#000000', height = 24, title, width = 24 }: Icon) => (
<AccessibleSVG
className={`icon-check ${className}`}
height={height}
title={title}
viewBox="0 0 24 24"
width={width}
>
<path d="M0 0h24v24H0z" fill="none" />
<path className="fill-color" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" fill={color} />
</AccessibleSVG>
);
export default IconCheck;