mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-15 08:15:34 -05:00
This is a squash merge of a bajillion messy small commits created while iterating on the UI component library and redesign.
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
import { cardAnatomy } from '@chakra-ui/anatomy';
|
|
import { createMultiStyleConfigHelpers } from '@chakra-ui/react';
|
|
import { cardVariantLora } from 'features/lora/components/styles';
|
|
|
|
const { defineMultiStyleConfig } = createMultiStyleConfigHelpers(
|
|
cardAnatomy.keys
|
|
);
|
|
|
|
export const cardTheme = defineMultiStyleConfig({
|
|
variants: { lora: cardVariantLora },
|
|
});
|