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

function IconBrandToyota({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-toyota" 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" /><ellipse cx={12} cy={12} rx={10} ry={7} /><path d="M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z" /><path d="M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806" /></svg>;
}

export default IconBrandToyota;