diff --git a/src/components/Tooltip.astro b/src/components/Tooltip.astro new file mode 100644 index 0000000..928c533 --- /dev/null +++ b/src/components/Tooltip.astro @@ -0,0 +1,136 @@ +--- + +--- + +
+
+ +
+
+ +
+
+ + + + diff --git a/src/components/TuiButton.astro b/src/components/TuiButton.astro index a9f803e..ed97f1e 100644 --- a/src/components/TuiButton.astro +++ b/src/components/TuiButton.astro @@ -5,16 +5,25 @@ interface Props { shortcut?: string; variant?: "default" | "primary" | "subtle"; title?: string; + description?: string; } -const { id, label, shortcut, variant = "default", title = "" } = Astro.props; +const { + id, + label, + shortcut, + variant = "default", + title = "", + description = "", +} = Astro.props; ---