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

function IconCurrencyNaira({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg className="icon icon-tabler icon-tabler-currency-naira" 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="M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948" /><path d="M5 10h14" /><path d="M5 14h14" /></svg>;
}

export default IconCurrencyNaira;