@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 978 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var MyLocation = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M12 2a1 1 0 0 1 1 .88v1.43a7.75 7.75 0 0 1 6.69 6.7L21 11a1 1 0 0 1 .12 2h-1.43A7.75 7.75 0 0 1 13 19.69V21a1 1 0 0 1-2 .12v-1.43A7.75 7.75 0 0 1 4.31 13H3a1 1 0 0 1-.12-2h1.43a7.75 7.75 0 0 1 6.7-6.69L11 3a1 1 0 0 1 1-1zm0 4.25a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5zM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8z"
}));
});
MyLocation.displayName = 'MyLocation';
export var MyLocationDimensions = {
height: 24,
width: 24
};