@codementor/ui-kit
Version:
50 lines (42 loc) • 1.39 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.LandmarkSvg = undefined;
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _createIcon = require('../hoc/createIcon');
var _createIcon2 = _interopRequireDefault(_createIcon);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var LandmarkSvg = function LandmarkSvg(props) {
return _react2.default.createElement(
'svg',
props,
_react2.default.createElement(
'g',
{
fill: 'none',
fillRule: 'evenodd'
},
_react2.default.createElement('path', {
d: 'M0 0h24v24H0z'
}),
_react2.default.createElement('path', {
fill: '#000',
fillRule: 'nonzero',
d: 'M13.041 21.863a1.4 1.4 0 0 1-2.082 0C6.319 16.701 4 12.747 4 10a8 8 0 1 1 16 0c0 2.747-2.32 6.701-6.959 11.863zM18.6 10a6.6 6.6 0 0 0-13.2 0c0 2.294 2.178 6.008 6.6 10.927 4.422-4.92 6.6-8.633 6.6-10.927zM12 14a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-1.4a2.6 2.6 0 1 0 0-5.2 2.6 2.6 0 0 0 0 5.2z'
})
)
);
};
LandmarkSvg.defaultProps = {
xmlns: 'http://www.w3.org/2000/svg',
width: '24',
height: '24',
viewBox: '0 0 24 24'
};
exports.default = (0, _createIcon2.default)({
SvgComponent: LandmarkSvg,
displayName: 'LandmarkIcon'
});
exports.LandmarkSvg = LandmarkSvg;