@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (7 loc) • 946 B
JavaScript
import React from 'react'
const CheckCircle = (props) => (
<svg fill="currentcolor" width="24" height="24" viewBox="0 0 24 24" data-testid="icon:check-circle" {...props}>
<path d="M12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 Z M12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 Z M9.79289322,15.7071068 L6.79289322,12.7071068 C6.40236893,12.3165825 6.40236893,11.6834175 6.79289322,11.2928932 C7.18341751,10.9023689 7.81658249,10.9023689 8.20710678,11.2928932 L10.5,13.5998695 L15.2928932,8.79289322 C15.6834175,8.40236893 16.3165825,8.40236893 16.7071068,8.79289322 C17.0976311,9.18341751 17.0976311,9.81658249 16.7071068,10.2071068 L11.2071068,15.7071068 C10.8165825,16.0976311 10.1834175,16.0976311 9.79289322,15.7071068 Z" />
</svg>
)
export default CheckCircle