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

const IconOmega = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-omega" 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="M4 19h5v-1a7.35 7.35 0 1 1 6 0v1h5" /></svg>;

export default IconOmega;