@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 775 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Bookmark = /*#__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 32 32"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M10.2 3A4.2 4.2 0 0 0 6 7.2V28a1 1 0 0 0 1.59.81L16 22.73l8.41 6.08A1 1 0 0 0 26 28V7.2A4.2 4.2 0 0 0 21.8 3H10.2Z"
}));
});
Bookmark.displayName = 'Bookmark';
export var BookmarkDimensions = {
height: 32,
width: 32
};