UNPKG

@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 981 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Code(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: "M13.263 6.218c.45.1.734.547.634.997l-2.212 9.935a.835.835 0 0 1-1.63-.363l2.212-9.935c.1-.45.546-.734.996-.634zm3.932 1.066l4.042 4.13a.835.835 0 0 1 0 1.168l-4.042 4.135a.835.835 0 0 1-1.194-1.167l3.266-3.341a.3.3 0 0 0 0-.42l-3.266-3.337a.835.835 0 0 1 1.194-1.168zm-9.213-.012a.835.835 0 0 1 .086 1.094l-.074.086-3.266 3.337a.3.3 0 0 0-.042.366l.042.054 3.267 3.34a.835.835 0 0 1-1.11 1.244l-.084-.076-4.043-4.135a.835.835 0 0 1-.078-1.074l.078-.093 4.043-4.13a.835.835 0 0 1 1.18-.013z" })); }