@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) • 762 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function EditOff(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: "M14.065 13.846h.038l-3.714-3.638h-.038L4.4 4.37 3.188 5.584l5.95 5.836-5.95 5.836v3.638h3.714l5.95-5.836 6.935 6.784L21 20.667l-6.935-6.821zm1.212-1.213l2.577-2.501-3.714-3.638-2.539 2.5 3.676 3.639zm5.42-5.306a.96.96 0 0 0 0-1.364L18.383 3.69c-.379-.379-.985-.379-1.402 0L15.2 5.471l3.714 3.638 1.782-1.782z" })
);
}