@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 876 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./All.js.flow";
export default function All(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}