mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-09 11:05:19 -05:00
19 lines
380 B
TypeScript
19 lines
380 B
TypeScript
import { Flex } from '@chakra-ui/react';
|
|
import CancelButton from './CancelButton';
|
|
import InvokeButton from './InvokeButton';
|
|
import { memo } from 'react';
|
|
|
|
/**
|
|
* Buttons to start and cancel image generation.
|
|
*/
|
|
const ProcessButtons = () => {
|
|
return (
|
|
<Flex gap={2}>
|
|
<InvokeButton />
|
|
<CancelButton />
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default memo(ProcessButtons);
|