mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
import InvokeButton from './InvokeButton';
|
|
import CancelButton from './CancelButton';
|
|
import LoopbackButton from './Loopback';
|
|
|
|
/**
|
|
* Buttons to start and cancel image generation.
|
|
*/
|
|
const ProcessButtons = () => {
|
|
return (
|
|
<div className="process-buttons">
|
|
<InvokeButton />
|
|
<LoopbackButton />
|
|
<CancelButton />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ProcessButtons;
|