| 1 |
import React from 'react'; |
| 2 |
|
| 3 |
function StarLight() { |
| 4 |
return ( |
| 5 |
<svg |
| 6 |
xmlns='http://www.w3.org/2000/svg' |
| 7 |
width='16' |
| 8 |
height='18' |
| 9 |
fill='none' |
| 10 |
style={{ marginLeft: 0, marginRight: '8px' }} |
| 11 |
viewBox='0 0 16 18'> |
| 12 |
<path |
| 13 |
fill='url(#paint0_linear_2112_1918)' |
| 14 |
d='M.5 9c0-.323.262-.582.584-.614a5.846 5.846 0 0 0 5.231-5.231c.032-.321.29-.584.613-.584s.582.263.613.584a5.846 5.846 0 0 0 5.232 5.231c.321.032.583.29.583.614 0 .322-.262.58-.583.613a5.846 5.846 0 0 0-5.232 5.231c-.031.321-.29.584-.613.584s-.581-.263-.613-.584a5.846 5.846 0 0 0-5.231-5.231C.762 9.58.5 9.323.5 9'></path> |
| 15 |
<path |
| 16 |
fill='url(#paint1_linear_2112_1918)' |
| 17 |
d='M12.07 1.928a.19.19 0 0 1 .175-.183 1.754 1.754 0 0 0 1.57-1.57.19.19 0 0 1 .184-.175.19.19 0 0 1 .184.175 1.754 1.754 0 0 0 1.57 1.57.19.19 0 0 1 .174.183.19.19 0 0 1-.175.184 1.754 1.754 0 0 0-1.57 1.57.19.19 0 0 1-.183.175.19.19 0 0 1-.184-.175 1.754 1.754 0 0 0-1.57-1.57.19.19 0 0 1-.175-.184'></path> |
| 18 |
<path |
| 19 |
fill='url(#paint2_linear_2112_1918)' |
| 20 |
d='M10.786 15.429c0-.13.105-.233.234-.245a2.34 2.34 0 0 0 2.092-2.093.253.253 0 0 1 .245-.234c.13 0 .233.105.246.234a2.34 2.34 0 0 0 2.092 2.093.253.253 0 0 1 .234.245c0 .129-.105.232-.234.245a2.34 2.34 0 0 0-2.092 2.093.253.253 0 0 1-.246.233.253.253 0 0 1-.245-.233 2.34 2.34 0 0 0-2.092-2.093.253.253 0 0 1-.234-.245'></path> |
| 21 |
<defs> |
| 22 |
<linearGradient |
| 23 |
id='paint0_linear_2112_1918' |
| 24 |
x1='6.928' |
| 25 |
x2='6.928' |
| 26 |
y1='2.571' |
| 27 |
y2='15.428' |
| 28 |
gradientUnits='userSpaceOnUse'> |
| 29 |
<stop stopColor='#E5C8FF'></stop> |
| 30 |
<stop offset='1' stopColor='#BA6DFC'></stop> |
| 31 |
</linearGradient> |
| 32 |
<linearGradient |
| 33 |
id='paint1_linear_2112_1918' |
| 34 |
x1='13.999' |
| 35 |
x2='13.999' |
| 36 |
y1='0' |
| 37 |
y2='3.857' |
| 38 |
gradientUnits='userSpaceOnUse'> |
| 39 |
<stop stopColor='#E7CBFF'></stop> |
| 40 |
<stop offset='1' stopColor='#F5E9FF'></stop> |
| 41 |
</linearGradient> |
| 42 |
<linearGradient |
| 43 |
id='paint2_linear_2112_1918' |
| 44 |
x1='13.357' |
| 45 |
x2='13.357' |
| 46 |
y1='12.857' |
| 47 |
y2='18' |
| 48 |
gradientUnits='userSpaceOnUse'> |
| 49 |
<stop stopColor='#E7CBFF'></stop> |
| 50 |
<stop offset='1' stopColor='#F5E9FF'></stop> |
| 51 |
</linearGradient> |
| 52 |
</defs> |
| 53 |
</svg> |
| 54 |
); |
| 55 |
} |
| 56 |
|
| 57 |
export default StarLight; |
| 58 |
|