@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 • 933 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Notification(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.493 16.583a.833.833 0 0 1 0 1.667h-15a.833.833 0 1 1 0-1.667c.69 0 1.25-.56 1.25-1.25v-4.051A6.631 6.631 0 0 1 11.16 4.56V2.833a.833.833 0 1 1 1.667 0v1.728a6.631 6.631 0 0 1 5.416 6.72v4.052c0 .69.56 1.25 1.25 1.25zM13.857 19.5a.207.207 0 0 1 .206.185 2.083 2.083 0 1 1-4.153.232 1.934 1.934 0 0 1 .013-.232.208.208 0 0 1 .207-.185h3.727z"
}));
}