box-ui-elements-mlh
Version:
27 lines (22 loc) • 739 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconAccepted = ({ className = '', color = '#26C281', height = 16, title, width = 16 }: Icon) => (
<AccessibleSVG
className={`icon-accepted ${className}`}
height={height}
title={title}
viewBox="0 0 16 16"
width={width}
>
<g fill="none" fillRule="evenodd">
<circle cx={8} cy={8} fill={color} r={8} />
<path
d="M7.051 9.253L4.965 7.172 3.75 8.423l3.301 3.327 5.699-5.751-1.235-1.249-4.464 4.503z"
fill="#FFF"
/>
</g>
</AccessibleSVG>
);
export default IconAccepted;