UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

18 lines 1.09 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Camera(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.ariaLabel }, React.createElement("path", { d: "M14.29 16.051a3.124 3.124 0 1 1 0-6.247 3.124 3.124 0 0 1 0 6.247zm5.576-8.954c1.76 0 2.13 1.007 2.13 1.852V17.6a1.877 1.877 0 0 1-2.13 1.99H4.134a1.877 1.877 0 0 1-2.13-1.99V8.95c0-.845.362-1.852 2.08-1.852h4.998c.278 0 .383-.235.703-.674.852-1.177 1.323-1.825 2.215-1.825h4.165c1.158 0 1.69 1.125 2.205 2.21a.445.445 0 0 0 .4.29h1.096zm-.786 5.83a4.79 4.79 0 1 0-9.579 0 4.79 4.79 0 0 0 9.58 0zM6.17 10.222a1.041 1.041 0 1 0-2.083 0 1.041 1.041 0 0 0 2.082 0zM4.086 6.25a.416.416 0 0 1-.417-.417V5.64c0-.69.56-1.249 1.25-1.249h.833c.69 0 1.25.56 1.25 1.25v.208c0 .23-.187.416-.417.416l-2.5-.013z" })); }