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

function IconFlagOff({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-flag-off" 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/flag-off"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M5 5v16" /><path d="M19 5v9" /><path d="M7.641 3.645a4.994 4.994 0 0 1 4.359 1.355a5 5 0 0 0 7 0" /><path d="M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463" /><path d="M3 3l18 18" /></svg>;
}

export default IconFlagOff;