@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) • 917 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Boat.js.flow";
export default function Boat(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="M20.002 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0-1.22.85-2.61 1.32-4 1.32h-2v2h2c1.38 0 2.74-.35 4-.99a8.752 8.752 0 0 0 8 0c1.26.65 2.62.99 4 .99h2v-2h-2zm-16.05-2h.05c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78a.997.997 0 0 0-.6-.5l-1.28-.42V6c0-1.1-.9-2-2-2h-3V1h-6v3h-3c-1.1 0-2 .9-2 2v4.62l-1.29.42a1.007 1.007 0 0 0-.66 1.28l1.9 6.68zm2.05-13h12v3.97l-6-1.97-6 1.97V6z" />
</OrbitIcon>
);
}