@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.26 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function EditOff(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.551 14.718l-3.745 3.744a.377.377 0 0 1-.533 0L5.54 14.73a.377.377 0 0 1 0-.533l3.744-3.745L2.25 3.417a.806.806 0 0 1 0-1.167.806.806 0 0 1 1.167 0L21.75 20.583a.806.806 0 0 1 0 1.167c-.333.333-.917.333-1.167 0l-7.032-7.032zm2.01-2.01L11.294 8.44l2.486-2.487a.377.377 0 0 1 .267-.111.377.377 0 0 1 .267.112l3.728 3.739a.377.377 0 0 1 0 .532l-2.481 2.482zM4.78 15.622l3.595 3.603a.377.377 0 0 1-.179.634L3.465 20.99a.383.383 0 0 1-.354-.1.377.377 0 0 1-.1-.355l1.136-4.735a.377.377 0 0 1 .264-.275.377.377 0 0 1 .37.096zM20.45 5.154a1.886 1.886 0 0 1 0 2.663l-1.069 1.07a.377.377 0 0 1-.533 0l-3.734-3.734a.377.377 0 0 1 0-.533l1.07-1.069a1.886 1.886 0 0 1 2.664 0l1.602 1.602z"
}));
}