@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.5 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function NotificationAdd(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 0a4.585 4.585 0 1 1 0 9.17 4.585 4.585 0 0 1 0-9.17zm0 1.41a.706.706 0 0 0-.699.61l-.006.096v1.41a.353.353 0 0 1-.282.346l-.071.008h-1.41a.705.705 0 0 0-.097 1.404l.096.006h1.41a.353.353 0 0 1 .346.282l.008.071v1.41a.705.705 0 0 0 1.404.097l.006-.096v-1.41a.353.353 0 0 1 .282-.346l.071-.008h1.41a.705.705 0 0 0 .097-1.404l-.096-.006h-1.41a.353.353 0 0 1-.346-.282l-.008-.071v-1.41a.705.705 0 0 0-.705-.706z"
}));
}