@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.
28 lines • 1.18 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function PassengerRemove(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M12.526 11.298a6.667 6.667 0 0 0-2.573 4.68.21.21 0 0 1-.208.189H2.417A.417.417 0 0 1 2 15.75a7.644 7.644 0 0 1 .627-2.955c.45-.897 1.923-1.438 3.962-2.188l.526-.194a.512.512 0 0 0 .113-.257 2.044 2.044 0 0 0-.061-1.097 4.67 4.67 0 0 1-1.214-3.58C5.953 3.462 7.27 2 9.083 2c1.814 0 3.13 1.463 3.13 3.476a4.682 4.682 0 0 1-1.221 3.595 2.144 2.144 0 0 0-.049 1.083.5.5 0 0 0 .115.26l.524.191.89.333a.208.208 0 0 1 .054.36zm4.057-.131A5.423 5.423 0 0 1 22 16.583a5.417 5.417 0 1 1-5.417-5.416zm3.75 5.416a.833.833 0 0 0-.833-.833h-5.833a.833.833 0 1 0 0 1.667H19.5a.833.833 0 0 0 .833-.834z"
}));
}