You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
557 B
21 lines
557 B
import React from 'react'
|
|
|
|
const SvgSuccess = props => (
|
|
<svg
|
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
viewBox="0 0 17 17"
|
|
width="1em"
|
|
height="1em"
|
|
{...props}
|
|
>
|
|
<defs>
|
|
<path
|
|
id="a"
|
|
d="M8.333 16.667A8.333 8.333 0 1 1 8.333 0a8.333 8.333 0 0 1 0 16.667zM11.095 5.66l-4.41 4.41-1.513-1.51a.833.833 0 1 0-1.179 1.178l2.101 2.101a.833.833 0 0 0 1.179 0l5-5a.833.833 0 0 0-1.179-1.178z"
|
|
/>
|
|
</defs>
|
|
<use fill="currentColor" fillRule="evenodd" xlinkHref="#a" />
|
|
</svg>
|
|
)
|
|
|
|
export default SvgSuccess
|
|
|