styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.23 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Joystick = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M21.986 9.74a3.193 3.193 0 00-.008-.088A5.003 5.003 0 0017 5H7a4.97 4.97 0 00-4.987 4.737c-.01.079-.013.161-.013.253v6.51c0 .925.373 1.828 1.022 2.476A3.524 3.524 0 005.5 20c1.8 0 2.504-1 3.5-3 .146-.292.992-2 3-2 1.996 0 2.853 1.707 3 2 1.004 2 1.7 3 3.5 3 .925 0 1.828-.373 2.476-1.022A3.524 3.524 0 0022 16.5V10c0-.095-.004-.18-.014-.26zM7 12.031a2 2 0 11-.001-3.999A2 2 0 017 12.031zm10-5a1 1 0 110 2 1 1 0 110-2zm-2 4a1 1 0 110-2 1 1 0 110 2zm2 2a1 1 0 110-2 1 1 0 110 2zm2-2a1 1 0 110-2 1 1 0 110 2z", key: "k0" })));
});
exports.Joystick.displayName = 'Joystick';
exports.JoystickDimensions = { height: 24, width: 24 };
;