UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 866 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var JoystickButton = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M20 8h-4V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v4H4a2 2 0 00-2 2v4a2 2 0 002 2h4v4a2 2 0 002 2h4a2 2 0 002-2v-4h4a2 2 0 002-2v-4a2 2 0 00-2-2zM7 14l-3-2 3-2v4zm5 6l-2-3h4l-2 3zm0-6a2 2 0 11.001-4.001A2 2 0 0112 14zm-2-7l2-3 2 3h-4zm7 7v-4l3 2-3 2z", key: "k0" }))); }); JoystickButton.displayName = 'JoystickButton'; export var JoystickButtonDimensions = { height: 24, width: 24 };