mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-17 20:43:33 -05:00
14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
import { Flex } from '@invoke-ai/ui-library';
|
|
import type { PropsWithChildren } from 'react';
|
|
import { memo } from 'react';
|
|
|
|
export const CanvasEntitySettingsWrapper = memo(({ children }: PropsWithChildren) => {
|
|
return (
|
|
<Flex flexDir="column" gap={3} px={3} pb={3}>
|
|
{children}
|
|
</Flex>
|
|
);
|
|
});
|
|
|
|
CanvasEntitySettingsWrapper.displayName = 'CanvasEntitySettingsWrapper';
|