@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 681 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", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M16 4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12.499c0 1.251 1.443 1.952 2.427 1.179l3.264-2.565a.5.5 0 0 1 .618 0l3.264 2.565c.984.773 2.427.072 2.427-1.18z" }) }));
};
IconBookmarkFilled.iconName = "bookmark--filled";
export default IconBookmarkFilled;