@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 • 794 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Phone(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: "M17.965 13.806a2.083 2.083 0 0 0-2.947 0l-1.321 1.32A39.095 39.095 0 0 1 8.872 10.3l1.322-1.322a2.085 2.085 0 0 0 0-2.948l-1.77-1.768a2.13 2.13 0 0 0-2.945 0l-.97.97a2.926 2.926 0 0 0-.367 3.67 39.133 39.133 0 0 0 10.95 10.96 2.956 2.956 0 0 0 3.667-.37l.97-.97a2.085 2.085 0 0 0 0-2.948l-1.764-1.768z"
}));
}