UNPKG

@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"

40 lines (31 loc) 1.72 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = Link; var _react = require("react"); var React = _interopRequireWildcard(_react); var _Icon = require("../Icon"); var _Icon2 = _interopRequireDefault(_Icon); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } /* eslint-disable */ function Link(props) { var color = props.color, size = props.size, customColor = props.customColor, className = props.className, dataTest = props.dataTest; return React.createElement( _Icon2.default, { viewBox: "0 0 24 24", size: size, color: color, customColor: customColor, className: className, dataTest: dataTest }, React.createElement("path", { d: "M3.583 16.285l-.706-.707a3.003 3.003 0 0 1 0-4.243l8.486-8.485c1.132-1.134 3.109-1.134 4.242 0l.706.708L14.9 4.97l-.707-.708a.996.996 0 0 0-.709-.292.99.99 0 0 0-.707.292L4.29 12.748a1.002 1.002 0 0 0 0 1.416l.707.707-1.413 1.414zm17.678-7.777c.567.567.879 1.32.879 2.122 0 .8-.313 1.553-.878 2.12l-8.486 8.485a2.98 2.98 0 0 1-2.12.878 2.98 2.98 0 0 1-2.123-.878l-.706-.707 1.414-1.413.707.707a1.027 1.027 0 0 0 1.415 0l8.485-8.486a.996.996 0 0 0 .292-.707.99.99 0 0 0-.293-.707l-.707-.707 1.413-1.413.709.707zM19.848 2.85l1.414 1.415-7.071 7.07-1.414-1.414 7.07-7.07zm-9.9 9.898l1.414 1.414-7.07 7.072-1.414-1.413 7.07-7.073z" }) ); }