@codementor/ui-kit
Version:
38 lines (30 loc) • 1.63 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _createCategoryIcon = require('../hoc/createCategoryIcon');
var _createCategoryIcon2 = _interopRequireDefault(_createCategoryIcon);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var UbuntuSvg = function UbuntuSvg(props) {
return _react2.default.createElement(
'svg',
props,
_react2.default.createElement('path', {
fill: '#DD4814',
d: 'M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm2.244 3.444a1.335 1.335 0 1 1 2.313 1.335 1.335 1.335 0 0 1-2.313-1.335zM12 6.2a5.81 5.81 0 0 1 1.55.21 1.873 1.873 0 0 0 2.514 1.454 5.782 5.782 0 0 1 1.723 3.762l-1.903.028a3.9 3.9 0 0 0-5.527-3.191L9.43 6.8A5.78 5.78 0 0 1 12 6.2zm-6.8 7.135a1.335 1.335 0 1 1 0-2.67 1.335 1.335 0 0 1 0 2.67zm1.184.12a1.873 1.873 0 0 0 0-2.91 5.814 5.814 0 0 1 2.398-3.37l.977 1.634A3.894 3.894 0 0 0 8.1 12c0 1.32.656 2.485 1.659 3.19l-.977 1.636a5.809 5.809 0 0 1-2.398-3.372zm9.683 5.59a1.334 1.334 0 1 1-1.335-2.31 1.334 1.334 0 0 1 1.335 2.31zm-.004-2.91a1.87 1.87 0 0 0-1.6.13 1.87 1.87 0 0 0-.913 1.324 5.799 5.799 0 0 1-4.12-.39l.927-1.662a3.899 3.899 0 0 0 5.526-3.191l1.904.028a5.782 5.782 0 0 1-1.724 3.762z'
})
);
};
UbuntuSvg.defaultProps = {
xmlns: 'http://www.w3.org/2000/svg',
width: '24',
height: '24',
viewBox: '0 0 24 24'
};
exports.default = (0, _createCategoryIcon2.default)({
isPlain: false,
SvgComponent: UbuntuSvg,
displayName: 'UbuntuIcon'
});