styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.07 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Bookmark = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M17 2H9C7.346 2 6 3.346 6 5v14c0 .514.104.946.308 1.285.564.935 1.815 1.008 2.813.008l3.172-3.172a1.031 1.031 0 011.414 0l3.172 3.172c.491.491 1.002.74 1.52.74.797 0 1.601-.629 1.601-2.033V5c0-1.654-1.346-3-3-3zM9 4h8c.551 0 1 .449 1 1v9.905l-2.451-2.247c-1.406-1.289-3.693-1.288-5.099 0L8 14.905V5c0-.551.449-1 1-1zm6.121 11.707c-.565-.565-1.318-.876-2.121-.876s-1.556.312-2.121.876L8 18.586v-2.324l3.126-2.866c1.033-.947 2.714-.947 3.747 0L18 16.262v2.324l-2.879-2.879z", key: "k0" })));
});
Bookmark.displayName = 'Bookmark';
export var BookmarkDimensions = { height: 24, width: 24 };