@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 879 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLocationFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.1559 21.0508C15.3718 19.1273 20 14.5637 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 14.5637 8.6282 19.1273 10.8441 21.0508C11.5154 21.6334 12.4846 21.6334 13.1559 21.0508ZM12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z" }) }));
};
IconLocationFilled.iconName = "location--filled";
export default IconLocationFilled;