This commit is contained in:
2026-05-31 18:09:55 +03:00
parent 22afa7e1a5
commit a5d2742c7c
6 changed files with 123 additions and 33 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ export const WithBody: Story = {
description="Choose a new name for this project."
footer={<Button variant="primary">Save</Button>}
>
<TextField label="Project name" defaultValue="My project" />
<TextField placeholder="Project name" defaultValue="My project" />
</Dialog>
),
};
+8
View File
@@ -23,6 +23,14 @@ const meta = {
},
},
},
argTypes: {
children: { control: false },
content: { control: false },
},
args: {
content: '',
children: null,
},
} satisfies Meta<typeof Tooltip>;
export default meta;