mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-04 23:05:02 -05:00
20 lines
489 B
TypeScript
20 lines
489 B
TypeScript
import { Flex } from '@chakra-ui/react';
|
|
import InitAndMaskImage from '../../InitAndMaskImage';
|
|
import ImageFit from './ImageFit';
|
|
import ImageToImageStrength from './ImageToImageStrength';
|
|
|
|
/**
|
|
* Options for img2img generation (strength, fit, init/mask upload).
|
|
*/
|
|
const ImageToImageOptions = () => {
|
|
return (
|
|
<Flex direction={'column'} gap={2}>
|
|
<ImageToImageStrength />
|
|
<ImageFit />
|
|
<InitAndMaskImage />
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default ImageToImageOptions;
|