mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-18 00:01:27 -05:00
23 lines
487 B
TypeScript
23 lines
487 B
TypeScript
import { Flex, Icon } from '@chakra-ui/react';
|
|
import { FaImage } from 'react-icons/fa';
|
|
|
|
const SelectImagePlaceholder = () => {
|
|
return (
|
|
<Flex
|
|
sx={{
|
|
w: 'full',
|
|
h: 'full',
|
|
// bg: 'base.800',
|
|
borderRadius: 'base',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
aspectRatio: '1/1',
|
|
}}
|
|
>
|
|
<Icon color="base.400" boxSize={32} as={FaImage}></Icon>
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default SelectImagePlaceholder;
|