@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 • 1.64 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Atm(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.727 3.91c.727 0 1.273.545 1.273 1.273v4.545c0 .727-.545 1.273-1.273 1.273H18.91a.195.195 0 0 1-.182-.182l-.818-2.455v-.09c0-.091.09-.182.182-.182h1a.815.815 0 0 0 .818-.818.815.815 0 0 0-.818-.819H4.909a.815.815 0 0 0-.818.819c0 .454.363.818.818.818H6c.091 0 .091.182.091.272-.273.728-.545 1.546-.818 2.364 0 .091-.091.182-.182.182H3.273A1.243 1.243 0 0 1 2 9.637V5.092c0-.636.546-1.182 1.273-1.182h17.454zm-4.545 4.636c1.364 3.637 2 7.364 2.182 11.091 0 .273-.182.455-.455.455H6.273c-.273 0-.455-.182-.455-.455 0-3.727.637-7.545 2-11.09 0 0 .091-.092.182-.092h8c.091 0 .182 0 .182.091zm-3.273 8.637c.545-.091 1-.546 1.273-1.091.363-.91-.091-1.91-1-2.273l-1.728-.727a.5.5 0 0 1-.272-.455c0-.273.182-.454.454-.454h1.728a.621.621 0 0 0 .636-.637.621.621 0 0 0-.636-.636h-.455a.196.196 0 0 1-.182-.182v-.182c0-.363-.273-.636-.636-.636s-.637.273-.637.636v.273c0 .091-.09.182-.181.182-.546.182-1.091.545-1.273 1.09-.364.91.091 1.91 1 2.273l1.727.728a.5.5 0 0 1 .273.454c0 .273-.182.455-.455.455h-1.727a.621.621 0 0 0-.636.636c0 .364.272.637.636.637h.455c.09 0 .181.09.181.181v.182c0 .364.273.637.637.637s.636-.273.636-.637v-.273c0-.09.091-.181.182-.181z"
}));
}