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
566 B

import React from 'react'
const SvgHelp2 = props => (
<svg viewBox="0 0 18 18" width="1em" height="1em" {...props}>
<g
transform="translate(1 1)"
stroke="currentColor"
strokeWidth={0.8}
fill="none"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx={8} cy={8} r={8} />
<circle cx={8} cy={8} r={3.2} />
<path d="M2.4 2.4l3.392 3.392M10.4 10.4l3.392 3.392M10.4 5.792L13.792 2.4M10.4 6.024L13.224 3.2M2.4 13.792L5.792 10.4" />
</g>
</svg>
)
export default SvgHelp2