@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 870 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPlayCircleFilled = (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: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM16.2583 13.7318C17.5917 12.962 17.5917 11.0375 16.2583 10.2677L11 7.23181C9.66667 6.46201 8 7.42426 8 8.96386V15.0357C8 16.5753 9.66667 17.5375 11 16.7677L16.2583 13.7318Z" }) }));
};
IconPlayCircleFilled.iconName = "play-circle--filled";
export default IconPlayCircleFilled;