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.

22 lines 682 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function InsuranceOff(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: "M18.601 18.381L21 20.78 19.78 22l-2.279-2.279C16.004 21.31 14.113 22.484 12 23c-5.16-1.26-9-6.45-9-12V5.22l-2-2L2.22 2l2.317 2.317.041-.019 14.048 14.048-.025.035zm.95-1.55L6.268 3.548 12 1l9 4v6c0 2.053-.526 4.057-1.449 5.831z" })); }