tidy(ui): clean up unused code 3

variables, types and schemas
This commit is contained in:
psychedelicious
2024-02-27 17:07:40 +11:00
parent a6f6fe581e
commit dc64089c9d
27 changed files with 141 additions and 554 deletions

View File

@ -1,13 +0,0 @@
import { Flex } from '@invoke-ai/ui-library';
import type { PropsWithChildren } from 'react';
import { memo } from 'react';
const StyledFlex = (props: PropsWithChildren) => {
return (
<Flex flexDirection="column" gap={2} p={4} borderRadius="base" bg="base.900">
{props.children}
</Flex>
);
};
export default memo(StyledFlex);