Files
InvokeAI/invokeai/frontend/web/src/common/components/InvCard/InvCard.stories.tsx
psychedelicious f0b102d830 feat(ui): ux improvements & redesign
This is a squash merge of a bajillion messy small commits created while iterating on the UI component library and redesign.
2023-12-29 08:26:14 -05:00

25 lines
509 B
TypeScript

import type { Meta, StoryObj } from '@storybook/react';
import type { InvCardProps } from './types';
import { InvCard } from './wrapper';
const meta: Meta<typeof InvCard> = {
title: 'Primitives/InvCard',
tags: ['autodocs'],
component: InvCard,
args: {
colorScheme: 'base',
},
};
export default meta;
type Story = StoryObj<typeof InvCard>;
const Component = (props: InvCardProps) => {
return <InvCard {...props}>Invoke</InvCard>;
};
export const Default: Story = {
render: Component,
};