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

function IconBrandAdobe({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-adobe" 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/brand-adobe"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12.893 4.514l7.977 13.994a0.993 .993 0 0 1 -.394 1.365a1.04 1.04 0 0 1 -.5 .127h-3.476l-4.5 -8l-2.5 4h1.5l2 4h-8.977c-.565 0 -1.023 -.45 -1.023 -1.003c0 -.171 .045 -.34 .13 -.49l7.977 -13.993a1.034 1.034 0 0 1 1.786 0z" /></svg>;
}

export default IconBrandAdobe;