styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
19 lines (18 loc) • 893 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Map = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("polygon", { points: "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6", key: "k0" }),
React.createElement("line", { x1: 8, x2: 8, y1: 2, y2: 18, key: "k1" }),
React.createElement("line", { x1: 16, x2: 16, y1: 6, y2: 22, key: "k2" })));
});
Map.displayName = 'Map';
export var MapDimensions = { height: 24, width: 24 };