UNPKG

@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"

21 lines (19 loc) 713 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./InsuranceOff.js.flow"; export default function InsuranceOff(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <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" /> </OrbitIcon> ); }