@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"
20 lines (18 loc) • 1.03 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Atm(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: "M20 0c.55 0 1 .45 1 1v22a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V1c0-.551.45-1 1-1h16zM9.667 1v1.556h1.555v4.667h1.555V2.556h1.557v4.666h1.556V4.136l.227.341a.658.658 0 0 0 1.1 0l.227-.341v3.085H19V1.776A.776.776 0 0 0 18.223 1c-.444 0-.259.036-1.556 1.918C15.37 1.036 15.554 1 15.111 1a.776.776 0 0 0-.777.776V1H9.667zM8.111 3.333h.001v.778H6.556v-.778c0-.428.348-.778.778-.778a.78.78 0 0 1 .777.778zM5 3.333v3.89h1.556V5.667h1.555v1.555h1.556V3.333A2.336 2.336 0 0 0 7.334 1 2.336 2.336 0 0 0 5 3.333zm2 6.668h10v6H7v-6zm0 7h6v2H7v-2zm-2 5h14v-13H5v13zM16 19a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" })
);
}