@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.15 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Seat(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: "M9.696 6.566a2.283 2.283 0 1 1 0-4.566 2.283 2.283 0 0 1 0 4.566zm8.402 10.229l.274 3.744c0 .73-.548 1.37-1.278 1.461-.731 0-1.37-.548-1.462-1.278l-.274-3.836c0-.183-.182-.365-.456-.365H12.71c-1.644 0-3.014-1.188-3.196-2.74l-.73-4.749c-.092-.73.456-1.37 1.186-1.552.73-.092 1.37.456 1.553 1.095l.73 4.84c0 .275.183.457.457.457h2.192c1.644 0 3.014 1.279 3.196 2.923zm-4.749 1.004c.548 0 .914.365.914.913s-.366.914-.914.914H9.788c-1.279 0-2.375-.822-2.649-2.1l-1.461-6.394c-.183-.456.183-1.004.64-1.095.456-.183 1.004.182 1.095.639l1.461 6.393c.092.456.457.73.914.73h3.561z"
}));
}