@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.11 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var NotePin = /*#__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 20 20"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M3 9.02v5.16A3 3 0 0 0 6 17h4v-4.18a3 3 0 0 1 2.82-2.81L13 10h4V5.82A3 3 0 0 0 14 3H9.46c.95 1.12.6 2.85-.74 3.51l-1.89.92-.44 1.28a1.82 1.82 0 0 1-3 .7L3 9Zm13.54 2.63a2 2 0 0 0 .36-.65h-4.06a2 2 0 0 0-1.83 1.85L11 13v3.9a2 2 0 0 0 .8-.49l4.61-4.62.13-.14Zm-8-8.26L6.6 1.46a1.5 1.5 0 0 0-2.4.4l-.8 1.65a1 1 0 0 1-.57.5l-1.1.39a1 1 0 0 0-.39 1.65L2.3 7 1 8.3V9h.7L3 7.7l.95.95a1 1 0 0 0 1.65-.38l.38-1.1a1 1 0 0 1 .5-.57l1.65-.8a1.5 1.5 0 0 0 .4-2.41Z"
}));
});
NotePin.displayName = 'NotePin';
export var NotePinDimensions = {
height: 20,
width: 20
};