@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.
28 lines • 1.07 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Code(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: 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"
}));
}