@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.
22 lines • 1.05 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggagePersonalItem(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M12 4C9.76 4 8 5.76 8 8h1.6c0-1.36 1.04-2.4 2.4-2.4 1.36 0 2.4 1.04 2.4 2.4H16c0-2.24-1.76-4-4-4zM5.6 8.8l-.725 4.475c.081.24.331.484.65.725.24.16.556.319.875.4.16.081.31.15.55.15 1.44.4 3.206.575 4.325.575 0 .481.319.8.8.8.481 0 .8-.319.8-.8 1.119 0 3.034-.169 4.475-.65.16 0 .244-.069.325-.15.4-.16.731-.334 1.05-.575.16-.16.319-.31.4-.55L18.4 8.8H5.6zm1.275 1.6H17.05l.3 2.4c-.64.319-2.469.8-5.35.8s-4.731-.481-5.45-.8l.325-2.4zm12.4 4.25c-.319.24-.725.39-1.125.55-.16.081-.24.069-.4.15l.325 2.25H5.925l.325-2.15c-.24-.081-.41-.169-.65-.25-.319-.16-.631-.234-.95-.475L4 19.2h16l-.725-4.55z"
}));
}