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

function IconBrandYatse({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-yatse" 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="M7.002 3l4.998 2.876v5.088l4.197 -2.73l4.803 2.731l-9.281 5.478l-2.383 1.41l-2.334 1.377l-3.002 1.77v-5.565l3.002 -1.771z" /></svg>;
}

export default IconBrandYatse;