svelte-multiselect
Version:
Svelte multi-select component
14 lines (13 loc) • 505 B
TypeScript
import type { HTMLAttributes } from 'svelte/elements';
type $$ComponentProps = HTMLAttributes<HTMLAnchorElement> & {
href: string;
title?: string;
aria_label?: string;
target?: `_self` | `_blank`;
color?: string | null;
fill?: string | null;
corner?: `top-left` | `top-right` | `bottom-left` | `bottom-right`;
};
declare const GitHubCorner: import("svelte").Component<$$ComponentProps, {}, "">;
type GitHubCorner = ReturnType<typeof GitHubCorner>;
export default GitHubCorner;