@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.
18 lines • 802 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function MenuHamburger(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M20.823 19H3.177C2.527 19 2 18.552 2 18s.527-1 1.177-1h17.646c.651 0 1.177.448 1.177 1s-.526 1-1.177 1zM3.177 13C2.526 13 2 12.552 2 12s.526-1 1.177-1h17.646c.65 0 1.177.448 1.177 1s-.527 1-1.177 1H3.177zm17.646-6H3.177C2.527 7 2 6.552 2 6s.527-1 1.177-1h17.646C21.474 5 22 5.448 22 6s-.526 1-1.177 1z"
}));
}