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

function IconExposurePlus2({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exposure-plus-2" 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="M12 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8" /><path d="M3 12h6" /><path d="M6 9v6" /></svg>;
}

export default IconExposurePlus2;