aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/pray.js
blob: 0e4e2acd190157c81cf7f666e1da7e7bd2623b1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconPray({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <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;