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