ab-tests
Version:
HBUI library
21 lines (18 loc) • 634 B
JavaScript
import React from 'react'
function SuccessIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="22"
height="23"
fill="none"
viewBox="0 0 22 23"
>
<path
fill="#fff"
d="M11 .594C5.025.594.219 5.445.219 11.375A10.755 10.755 0 0011 22.156c5.93 0 10.781-4.806 10.781-10.781C21.781 5.445 16.93.594 11 .594zm5.166 8.804l-5.75 5.75c-.225.27-.539.36-.854.36-.359 0-.673-.09-.898-.36L5.79 12.273a1.22 1.22 0 010-1.752 1.22 1.22 0 011.752 0l2.021 1.977 4.852-4.852a1.22 1.22 0 011.752 0 1.22 1.22 0 010 1.752z"
></path>
</svg>
)
}
export default SuccessIcon