diff --git a/src/runtime/theme/index.ts b/src/runtime/theme/index.ts index 3e11d606..9f76e229 100644 --- a/src/runtime/theme/index.ts +++ b/src/runtime/theme/index.ts @@ -1 +1,3 @@ -export { default as button } from './button' \ No newline at end of file +export { default as button } from './button' +export { default as container } from './container' +export { default as tooltip } from './tooltip' \ No newline at end of file diff --git a/src/runtime/theme/tooltip.ts b/src/runtime/theme/tooltip.ts new file mode 100644 index 00000000..e3bf35c6 --- /dev/null +++ b/src/runtime/theme/tooltip.ts @@ -0,0 +1,6 @@ +export default { + slots: { + content: 'bg-white dark:bg-gray-900 text-gray-900 dark:text-white shadow rounded ring-1 ring-gray-200 dark:ring-gray-800 h-6 px-2 py-1 text-xs font-normal truncate relative', + arrow: 'fill-white dark:fill-gray-900' + } +} \ No newline at end of file