import React, { ReactElement } from 'react'
import { SvgIcon, SvgIconProps } from '@mui/material'

const GreenCheckIcon = (props: SvgIconProps): ReactElement => {
    return (
        <SvgIcon sx={{ marginTop: 1 }} {...props}>
            <g stroke='#5dbb00' strokeWidth='2.3' fill='#fff'>
                <circle cx='10' cy='10' r='8.5' />
                <path d='M5.2,10 8.5,13.4 14.8,7.2' />
            </g>
        </SvgIcon>
    )
}

export default GreenCheckIcon
