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.
16 lines
2.6 KiB
16 lines
2.6 KiB
// @flow
|
|
|
|
import React from 'react'
|
|
|
|
const path = (
|
|
<path
|
|
fill="currentColor"
|
|
d="M1.95829921,13.1713635 L2.14125286,13.3705136 C2.39608079,13.6479008 2.75379839,13.8082446 3.1386498,13.8082446 C3.62888695,13.8082446 4.07270108,13.5465255 4.32315895,13.1121781 C4.3784744,13.0243685 4.4262582,12.9312272 4.46598748,12.8333042 L5.62823945,9.96863766 C5.66976633,9.86628408 5.62045654,9.74964592 5.51810295,9.70811904 C5.51792345,9.70804621 5.51774384,9.70797365 5.51756412,9.70790134 L4.35360058,9.23959258 C4.25133724,9.19844798 4.13506237,9.24780344 4.09362079,9.34994678 L3.014247,12.0103389 L2.47033377,11.0482886 C1.16500751,8.73948368 1.43779635,5.83531442 3.21187571,3.80298861 C4.1617197,2.71487919 5.43598633,1.99577818 6.83364657,1.73701574 C6.93945677,1.71742607 7.08775605,1.69623489 7.2785444,1.67344219 L7.27851558,1.67320099 C7.37913454,1.66118046 7.45481191,1.57572434 7.45457647,1.47439019 L7.45155941,0.218566192 C7.4513029,0.108164366 7.3615966,0.0188739434 7.25119477,0.0191304511 C7.24491099,0.0191450508 7.2386314,0.0194559344 7.2323769,0.0200620662 C7.06797855,0.0359941388 6.93818926,0.0508490615 6.84300904,0.0646268341 C4.96010201,0.33718624 3.23081771,1.26825341 1.96237035,2.72134417 C-0.668835848,5.73556574 -0.638019798,10.2022207 1.95829921,13.1713635 Z M13.8587471,2.62948642 C13.6039192,2.35209922 13.2462016,2.19175543 12.8613502,2.19175543 C12.3711131,2.19175543 11.9272989,2.45347449 11.676841,2.88782187 C11.6215256,2.97563147 11.5737418,3.06877283 11.5340125,3.16669578 L10.3717605,6.03136234 C10.3302337,6.13371592 10.3795435,6.25035408 10.481897,6.29188096 C10.4820766,6.29195379 10.4822562,6.29202635 10.4824359,6.29209866 L11.6463994,6.76040742 C11.7486628,6.80155202 11.8649376,6.75219656 11.9063792,6.65005322 L12.985753,3.98966107 L13.5296662,4.95171139 C14.8349925,7.26051632 14.5622037,10.1646856 12.7881243,12.1970114 C11.8813272,13.2358077 10.6788468,13.9382846 9.35560021,14.224975 C9.20819654,14.256911 8.99643861,14.2903727 8.72032643,14.3253602 L8.72032034,14.325312 C8.6201835,14.3380008 8.54518583,14.4233011 8.54542035,14.5242384 L8.54817416,15.779497 C8.548431,15.8900435 8.63825485,15.9794509 8.74880133,15.9791941 C8.75557017,15.9791784 8.76233386,15.9788193 8.76906632,15.9781183 C9.0419707,15.9497019 9.25313318,15.9223113 9.40255376,15.8959465 C11.1899254,15.5805711 12.8245273,14.6683452 14.0376297,13.2786558 C16.6688358,10.2644343 16.6380198,5.7977793 14.0417008,2.82863648 L13.8587471,2.62948642 Z"
|
|
/>
|
|
)
|
|
|
|
export default ({ size, ...p }: { size: number }) => (
|
|
<svg viewBox="0 0 16 16" height={size} width={size} {...p}>
|
|
{path}
|
|
</svg>
|
|
)
|
|
|