@sorens/artist-svelte
Version:
an opinionated and clean UI framework for SvelteKit with theme support built-in
35 lines (34 loc) • 1 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { ColorProp } from '../../types/components';
import type { useAction } from '../../types/global';
declare const __propDef: {
props: {
[x: string]: any;
color?: ColorProp;
shadow?: boolean;
id?: string;
useAction?: useAction<HTMLElement>;
class?: string | undefined;
};
events: {
change: Event;
click: MouseEvent;
dblclick: MouseEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
mouseover: MouseEvent;
focus: FocusEvent;
input: Event;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type RadioProps = typeof __propDef.props;
export declare type RadioEvents = typeof __propDef.events;
export declare type RadioSlots = typeof __propDef.slots;
export default class Radio extends SvelteComponentTyped<RadioProps, RadioEvents, RadioSlots> {
}
export {};