mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-07 03:04:56 -05:00
17 lines
321 B
TypeScript
17 lines
321 B
TypeScript
import InvokeButton from './InvokeButton';
|
|
import CancelButton from './CancelButton';
|
|
|
|
/**
|
|
* Buttons to start and cancel image generation.
|
|
*/
|
|
const ProcessButtons = () => {
|
|
return (
|
|
<div className="process-buttons">
|
|
<InvokeButton />
|
|
<CancelButton />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ProcessButtons;
|