aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/pray.js
blob: 67161921380a1478881b4d39334d7ad6df111c6a (plain)
1
2
3
4
5
import * as React from "react";

const IconPray = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pray" 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" /><circle cx={12} cy={5} r={1} /><path d="M7 20h8l-4 -4v-7l4 3l2 -2" /></svg>;

export default IconPray;