@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.23 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggagePersonalItem(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: "M20.986 16.747a4.433 4.433 0 0 1-.97 3.63A4.539 4.539 0 0 1 16.528 22H7.457a4.53 4.53 0 0 1-3.484-1.62 4.428 4.428 0 0 1-.974-3.632L4.2 10.024a1.25 1.25 0 0 1 1.233-1.02h1.11c.023 0 .09.009.11.009h10.66c.012-.001.12-.012.131-.012h1.106a1.246 1.246 0 0 1 1.232 1.023l1.203 6.723zM6.758 13.102h1.3c.12 0 .217.097.217.217v1.748a.65.65 0 1 0 1.3 0v-1.748c0-.12.097-.217.216-.217h7.366a.65.65 0 1 0 0-1.3H6.758a.65.65 0 1 0 0 1.3zm.432-4.968a.867.867 0 0 1-.866-.867C6.324 3.81 9.158 2 11.957 2c2.8 0 5.633 1.81 5.633 5.267a.867.867 0 1 1-1.733 0 3.233 3.233 0 0 0-1.173-2.63c-2.013-1.653-6.627-1.11-6.627 2.63a.867.867 0 0 1-.867.867z"
}));
}