@fefade/svelte
Version:
Reusable Svelte UI components powered by the fefade core system.
17 lines (16 loc) • 516 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import type { OrientationType } from "@fefade/core/types";
interface Props extends HTMLAttributes<HTMLDivElement> {
lineStyle?: boolean | {
color?: string;
height?: string;
};
hoverFollower?: boolean | {
bgColor?: string;
};
orientation?: OrientationType;
scrollable?: boolean;
}
declare const TabList: import("svelte").Component<Props, {}, "">;
type TabList = ReturnType<typeof TabList>;
export default TabList;