aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/pray.js
blob: 35e30b7596770852f22e751a7c2b365eb828f6b3 (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}><circle cx={12} cy={5} r={1} /><path d="M7 20h8l-4 -4v-7l4 3l2 -2" /></svg>;

export default IconPray;