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
458 B
21 lines
458 B
import React from 'react'
|
|
|
|
const SvgCloudLightning = props => (
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={0.5}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="feather feather-cloud-lightning"
|
|
width="1em"
|
|
height="1em"
|
|
{...props}
|
|
>
|
|
<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9" />
|
|
<path d="M13 11l-4 6h6l-4 6" />
|
|
</svg>
|
|
)
|
|
|
|
export default SvgCloudLightning
|
|
|