@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 961 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPodcastFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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", { d: "M7.833 4.764a7.5 7.5 0 0 1 9.47 11.54.75.75 0 0 0 1.061 1.06 9.001 9.001 0 1 0-12.728 0 .75.75 0 1 0 1.06-1.06 7.5 7.5 0 0 1 1.137-11.54" }), _jsx("path", { d: "M9.5 7.258a4.5 4.5 0 0 1 5.682 6.924.75.75 0 1 0 1.06 1.06 6 6 0 1 0-8.485 0 .75.75 0 0 0 1.061-1.06A4.5 4.5 0 0 1 9.5 7.258" }), _jsx("path", { d: "M15 11a3 3 0 1 1-6 0 3 3 0 0 1 6 0M12 15a3 3 0 0 0-3 3v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a3 3 0 0 0-3-3" })] }));
};
IconPodcastFilled.iconName = "podcast--filled";
export default IconPodcastFilled;