@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 971 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCathedralFilled = (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 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M6.481 3.005c-.21-1.077-1.751-1.077-1.962 0l-1.482 7.554a2 2 0 0 0-.037.385V20a2 2 0 0 0 2 2h3.5a2 2 0 0 0 2-2v-2.5a1.5 1.5 0 0 1 3 0V20a2 2 0 0 0 2 2H19a2 2 0 0 0 2-2v-9.056q0-.194-.037-.385L19.48 3.005c-.21-1.077-1.751-1.077-1.962 0l-1.482 7.554a2 2 0 0 0-.037.385v.556l-3.25-3.25v-1.5a.75.75 0 0 0-1.5 0v1.5L8 11.5v-.556q0-.194-.037-.385zM6.324 10H4.676L5.5 5.796zm13 0h-1.648l.824-4.204z", clipRule: "evenodd" }) }));
};
IconCathedralFilled.iconName = "cathedral--filled";
export default IconCathedralFilled;