@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.31 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Android({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Android",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M19.447 5.106a1 1 0 0 1 .447 1.341L18.248 9.74C21.452 11.682 23.675 15.073 24 19H0c.325-3.927 2.548-7.318 5.752-9.26L4.105 6.447a1 1 0 1 1 1.79-.894l1.647 3.296A12.045 12.045 0 0 1 12 8c1.575 0 3.079.301 4.457.85l1.648-3.297a1 1 0 0 1 1.342-.447ZM8 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",
shapeRendering: "geometricPrecision"
}));
}
Android.displayName = 'Android';
export default createBaseComponent(Android);