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.

18 lines 1.3 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function NotificationAdd(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.ariaLabel }, React.createElement("path", { d: "M13.327 19.5c.083 0 .166.083.25.167v.25A2.063 2.063 0 0 1 11.493 22a2.063 2.063 0 0 1-2.083-2.083v-.25a.18.18 0 0 1 .167-.167zM11.493 2c.462 0 .781.284.828.721l.006.112v.417a6.5 6.5 0 0 0 5.418 11.555l-.002.528c0 .667.584 1.25 1.25 1.25.417 0 .834.334.834.834 0 .461-.284.78-.721.827l-.113.006h-15c-.5 0-.833-.333-.833-.833s.333-.834.833-.834c.625 0 1.177-.512 1.244-1.126l.006-.124V11.25c-.162-3.17 2.055-5.945 5.18-6.62l.237-.047v-1.75c0-.5.333-.833.833-.833zm4.757 1.25A5.256 5.256 0 0 1 21.5 8.5a5.25 5.25 0 1 1-5.25-5.25zm0 1.615a.808.808 0 0 0-.808.808v1.615c0 .223-.18.404-.404.404h-1.615a.808.808 0 1 0 0 1.616h1.615c.223 0 .404.18.404.404v1.615a.808.808 0 1 0 1.616 0V9.712c0-.224.18-.404.404-.404h1.615a.808.808 0 1 0 0-1.616h-1.615a.404.404 0 0 1-.404-.404V5.673a.808.808 0 0 0-.808-.808z" })); }