import { Button, ButtonGroup, Icon } from "@blueprintjs/core";
const styles = {
container: {
display: "flex",
alignItems: "center",
paddingRight: 5,
},
};
/** Button for starting code execution */
const RunButton = ({ onClick }: { onClick: () => void }) => (
}
>
Run code
);
/** Button group for debugging controls */
const DebugControls = (props: {
paused: boolean;
onPause: () => void;
onResume: () => void;
onStep: () => void;
onStop: () => void;
}) => {
return (