@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.11 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function NotificationOff(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: "M19.504 18.25H8.766L17.92 9.1a7.267 7.267 0 0 1 .333 2.18v4.053c0 .69.56 1.25 1.25 1.25a.834.834 0 1 1 0 1.667zm-5.64 1.25a.208.208 0 0 1 .207.185 2.084 2.084 0 1 1-4.143 0 .21.21 0 0 1 .208-.185h3.728zM2.828 21.994a.834.834 0 0 1-.589-.238.846.846 0 0 1 0-1.178l2.329-2.328h-.072a.834.834 0 1 1 0-1.667c.69 0 1.25-.56 1.25-1.25v-4.052a6.632 6.632 0 0 1 5.42-6.721V2.833a.834.834 0 0 1 1.668 0V4.56a6.075 6.075 0 0 1 3.545 1.885l4.203-4.2a.834.834 0 0 1 1.179 0 .845.845 0 0 1 0 1.177L3.418 21.756a.834.834 0 0 1-.59.238z"
}));
}