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

function IconBrandBadoo({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-badoo" 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="M22 9.43c0 5.838 -4.477 10.57 -10 10.57s-10 -4.662 -10 -10.5c-.004 -2.667 1.83 -5.01 4.322 -5.429c2.492 -.418 4.9 1.392 5.678 3.929c.768 -2.54 3.177 -4.354 5.668 -3.931c2.495 .417 4.332 2.69 4.332 5.36z" /><path d="M7.5 10c0 2.761 2.015 5 4.5 5s4.5 -2.239 4.5 -5" /></svg>;
}

export default IconBrandBadoo;