blob: 447b6964223f079ac68e5863a0c281641cd573e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import * as React from "react";
function IconBrandPushover({
size = 24,
color = "currentColor",
stroke = 2,
...props
}) {
return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-pushover" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6.16 10.985c-.83 -1.935 1.53 -7.985 8.195 -7.985c3.333 0 4.645 1.382 4.645 3.9c0 2.597 -2.612 6.1 -9 6.1" /><path d="M12.5 6l-5.5 15" /></svg>;
}
export default IconBrandPushover;
|