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

const IconTag = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-tag" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M11 3L20 12a1.5 1.5 0 0 1 0 2L14 20a1.5 1.5 0 0 1 -2 0L3 11v-4a4 4 0 0 1 4 -4h4" /><circle cx={9} cy={9} r={2} /></svg>;

export default IconTag;