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.
22 lines
1.2 KiB
22 lines
1.2 KiB
import React from 'react'
|
|
|
|
const SvgLightning = props => (
|
|
<svg viewBox="0 0 50 50" width="1em" height="1em" {...props}>
|
|
<defs>
|
|
<linearGradient id="b" x1="0%" y1="0%" y2="100%">
|
|
<stop offset="0%" stopColor="#FFBD59" />
|
|
<stop offset="100%" stopColor="#FD9800" />
|
|
</linearGradient>
|
|
</defs>
|
|
<g fill="none" fillRule="evenodd">
|
|
<circle cx={25} cy={25} r={25} fill="url(#b)" />
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="nonzero"
|
|
d="M22.999 39.764l.708-3.28 1.26-5.827.53-2.454c.044-.207-.094-.415-.316-.415h-7.85l.283.493 1.218-1.865 2.875-4.4 3.358-5.139 2.669-4.085.852-1.305-.599-.253-.709 3.28-1.259 5.824-.53 2.453c-.045.207.094.415.316.415h7.865l-.284-.493-1.22 1.866-2.878 4.4-3.362 5.141-2.673 4.086-.854 1.306c-.232.355.336.683.567.33l1.22-1.865 2.878-4.4 3.362-5.141 2.672-4.087.854-1.305c.138-.212-.044-.493-.283-.493h-7.864l.316.414.71-3.28 1.258-5.824.53-2.453c.08-.365-.393-.567-.599-.252l-1.218 1.865-2.875 4.4-3.357 5.139-2.67 4.085-.852 1.305c-.138.212.044.493.283.493h7.849l-.317-.414-.709 3.28-1.259 5.827-.53 2.454c-.089.412.543.587.633.174z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
)
|
|
|
|
export default SvgLightning
|
|
|