@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.18 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCathedral = (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 2h4a2 2 0 0 0 2-2v-2.5a1 1 0 1 1 2 0V20a2 2 0 0 0 2 2h4a2 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.796zM8 20.5v-6.676a.5.5 0 0 1 .146-.35L12 9.622l3.854 3.854a.5.5 0 0 1 .146.349V20.5h-1a.5.5 0 0 1-.5-.5v-2.5a2.5 2.5 0 0 0-5 0V20a.5.5 0 0 1-.5.5zm-1.5-6.683V11.5h-2V20a.5.5 0 0 0 .5.5h1.5v-6.682M19.324 10h-1.648l.824-4.204zM17.5 20.5H19a.5.5 0 0 0 .5-.5v-8.5h-2v9", clipRule: "evenodd" }) }));
};
IconCathedral.iconName = "cathedral";
export default IconCathedral;