@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
20 lines (18 loc) • 736 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Share(props) {
const { color, size, customColor, className, dataTest } = props;
return React.createElement(
OrbitIcon,
{
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
},
React.createElement("path", { d: "M2.476 21h-.02A.489.489 0 0 1 2 20.496c.002-.123.275-12.155 11.429-12.487V4.5c0-.193.106-.369.271-.45a.456.456 0 0 1 .504.062l7.62 6.5a.517.517 0 0 1 .002.777l-7.62 6.501a.462.462 0 0 1-.506.063.501.501 0 0 1-.271-.451v-3.497c-9.924.19-10.46 6.268-10.478 6.53a.485.485 0 0 1-.475.465z" })
);
}