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

function IconPaperclip({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-paperclip" 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/paperclip"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5" /></svg>;
}

export default IconPaperclip;