@fefade/svelte
Version: 
Reusable Svelte UI components powered by the fefade core system.
9 lines (8 loc) • 325 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import type { OrientationType } from "@fefade/core/types";
interface Props extends HTMLAttributes<HTMLDivElement> {
    orientation?: OrientationType;
}
declare const Tab: import("svelte").Component<Props, {}, "">;
type Tab = ReturnType<typeof Tab>;
export default Tab;