@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 762 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconBookmarkFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M16 4C16 2.89543 15.1046 2 14 2H6C4.89543 2 4 2.89543 4 4V16.4985C4 17.7502 5.44264 18.4513 6.42682 17.6779L9.69106 15.1128C9.87238 14.9703 10.1276 14.9703 10.3089 15.1128L13.5732 17.6779C14.5574 18.4513 16 17.7502 16 16.4985V4Z" }) }));
};
IconBookmarkFilled.iconName = "bookmark--filled";
export default IconBookmarkFilled;