@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 897 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPresentationPlayFilled = (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: "M1.75 3a.75.75 0 0 0 0 1.5H3V15a2 2 0 0 0 2 2h6.25v.94l-2.78 2.78a.75.75 0 1 0 1.06 1.06L12 19.31l2.47 2.47a.75.75 0 1 0 1.06-1.06l-2.78-2.78V17H19a2 2 0 0 0 2-2V4.5h1.25a.75.75 0 0 0 0-1.5zm13.5 8.299c1-.577 1-2.02 0-2.598l-4.5-2.598A1.5 1.5 0 0 0 8.5 7.402v5.196a1.5 1.5 0 0 0 2.25 1.3z", clipRule: "evenodd" }) }));
};
IconPresentationPlayFilled.iconName = "presentation-play--filled";
export default IconPresentationPlayFilled;