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