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.

28 lines 1.44 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function NotificationOn(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: "M9.577 19.5h3.75c.066 0 .133.053.2.117l.05.05v.25A2.063 2.063 0 0 1 11.493 22a2.061 2.061 0 0 1-2.078-1.933l-.005-.15v-.25c0-.067.053-.134.117-.158l.05-.009h3.75zM11.493 2c.5 0 .834.333.834.833v.5a5.691 5.691 0 0 0-1.084 3.334 5.762 5.762 0 0 0 5.75 5.75c.25 0 .5-.084.75-.084v3c0 .667.584 1.25 1.25 1.25.417 0 .834.334.834.834s-.334.833-.834.833h-15c-.5 0-.833-.333-.833-.833s.333-.834.833-.834c.667 0 1.25-.583 1.25-1.25V11.25C5.077 8 7.41 5.167 10.66 4.583v-1.75c0-.5.333-.833.833-.833zm5.502 0c2.522 0 4.585 2.063 4.585 4.585s-2.063 4.585-4.585 4.585-4.585-2.063-4.585-4.585S14.473 2 16.995 2zm1.874 2.394l-.068.076-2.276 3.036a.207.207 0 0 1-.267.058l-.047-.036-1.084-1.083a.625.625 0 0 0-.946.812l.062.072 1.25 1.25c.2.202.461.327.74.36l.141.008h.09c.32-.022.616-.164.83-.396l.087-.104 2.417-3.229a.62.62 0 0 0-.122-.873.625.625 0 0 0-.807.049z" })); }