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.
12 lines
545 B
12 lines
545 B
import React from 'react'
|
|
|
|
const SvgHand = props => (
|
|
<svg width="1em" height="1em" viewBox="0 0 32 14" {...props}>
|
|
<g stroke="currentColor" strokeWidth={0.75} fill="none" fillRule="evenodd">
|
|
<path d="M7 2.078c4.025-.372 7.34.589 9.943 2.882h4.623c2.038 0 1.782 3.04 0 3.04h-7.134M3.11 10.925H7V1H1c.208 5.035.966 8.368 2.272 10" />
|
|
<path d="M7 9.843C12.434 11.948 16.079 13 17.933 13c2.782 0 10.816-4.844 12.351-5.842C31.82 6.159 30.524 5 29.738 5c-.525 0-2.798.752-6.818 2.257" />
|
|
</g>
|
|
</svg>
|
|
)
|
|
|
|
export default SvgHand
|
|
|