@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 823 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Location = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M39.01 28.98A17 17 0 1 0 11 31.96l.02.02.02.02H11l10.09 10.7a4 4 0 0 0 5.82 0L37 32h-.04l.02-.02a16.76 16.76 0 0 0 2.03-3Zm-15-1.48a6 6 0 1 1 0-12 6 6 0 0 1 0 12Z"
}));
});
Location.displayName = 'Location';
export var LocationDimensions = {
height: 48,
width: 48
};