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

function IconAmpersand({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ampersand" 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="M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922" /></svg>;
}

export default IconAmpersand;