@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 • 909 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Feedback(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: "M20.696 4.8c.72 0 1.304.584 1.304 1.304v11.74c0 .72-.584 1.304-1.304 1.304h-8.56l-5.54 3.836a.435.435 0 0 1-.683-.358v-3.478H3.304A1.269 1.269 0 0 1 2 17.888V6.105c0-.72.584-1.304 1.304-1.304h17.392zm-9.496 3v4c0 .5.3.8.8.8.4 0 .8-.3.8-.8v-4c0-.4-.3-.8-.8-.8-.4 0-.8.3-.8.8zm.8 8.65a1.3 1.3 0 1 0 0-2.6 1.3 1.3 0 0 0 0 2.6z"
}));
}