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

function IconCurrencyWon({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-currency-won" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><desc>{"Download more icon variants from https://tabler-icons.io/i/currency-won"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M4 6l3.245 11.358a0.85 .85 0 0 0 1.624 .035l3.131 -9.393l3.131 9.393a0.85 .85 0 0 0 1.624 -.035l3.245 -11.358" /><path d="M21 10h-18" /><path d="M21 14h-18" /></svg>;
}

export default IconCurrencyWon;