@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 • 854 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function All(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: "M17 7c-3.055 0-4.539 2.375-5.848 4.471C9.779 13.666 8.814 15 7 15c-1.387 0-3-1.311-3-3s1.613-3 3-3c1.037 0 1.795.448 2.512 1.231l1.139-1.706C9.721 7.631 8.569 7 7 7c-2.664 0-5 2.336-5 5s2.336 5 5 5c3.055 0 4.539-2.375 5.848-4.471C14.221 10.334 15.186 9 17 9c1.387 0 3 1.311 3 3 0 2.074-.926 3-3 3-.988 0-1.723-.406-2.409-1.121l-1.216 1.622C14.3 16.382 15.445 17 17 17c3.178 0 5-1.822 5-5 0-2.664-2.336-5-5-5z"
}));
}