@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
9 lines (8 loc) • 374 B
TypeScript
import type { HTMLAttributes } from 'svelte/elements';
import type { WithElementRef } from 'bits-ui';
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
level?: 1 | 2 | 3 | 4 | 5 | 6;
};
declare const AlertTitle: import("svelte").Component<$$ComponentProps, {}, "ref">;
type AlertTitle = ReturnType<typeof AlertTitle>;
export default AlertTitle;