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.
10 lines
360 B
10 lines
360 B
import React from 'react'
|
|
|
|
const SvgCheckAnimated = props => (
|
|
<svg className="checkmark" viewBox="0 0 52 52" width="1em" height="1em" {...props}>
|
|
<circle className="checkmark__circle" cx={26} cy={26} r={25} fill="none" />
|
|
<path className="checkmark__check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8" />
|
|
</svg>
|
|
)
|
|
|
|
export default SvgCheckAnimated
|
|
|