@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.26 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Wheelchair(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: "M13.67 16.321c.557.14.896.703.759 1.26a5.83 5.83 0 1 1-9.647-5.665 1.042 1.042 0 0 1 1.425 1.52 3.748 3.748 0 1 0 6.201 3.644c.14-.557.705-.896 1.263-.759zm6.175 1.112a1.042 1.042 0 0 1 .34 2.055c-.143.024-2.524.43-2.67.43a1.042 1.042 0 0 1-1-.754L15.323 15a.416.416 0 0 0-.47-.296c-1.452.244-3.765.637-4.896.858a1.875 1.875 0 0 1-2.22-1.599L7.062 7.59a.416.416 0 0 0-.27-.348 2.705 2.705 0 1 1 2.505-.333.416.416 0 0 0-.173.383l.173 1.626a.416.416 0 0 0 .485.368l3.6-.623a1.04 1.04 0 0 1 .355 2.05l-3.789.656a.416.416 0 0 0-.343.454l.127 1.203a.416.416 0 0 0 .49.365c1.985-.365 5.408-.93 5.575-.957a1.04 1.04 0 0 1 1.17.742l1.192 4.165a.416.416 0 0 0 .469.295l1.217-.203z"
}));
}