UNPKG

svelte-ux

Version:

A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.

37 lines (36 loc) 1.02 kB
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; id?: string | undefined; name?: string | undefined; value?: any; group?: any; checked?: boolean | undefined; required?: boolean | undefined; disabled?: boolean | undefined; fullWidth?: boolean | undefined; size?: "xs" | "sm" | "md" | "lg" | undefined; classes?: { root?: string; input?: string; radio?: string; label?: string; icon?: string; } | undefined; }; events: { change: Event; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type RadioProps = typeof __propDef.props; export type RadioEvents = typeof __propDef.events; export type RadioSlots = typeof __propDef.slots; export default class Radio extends SvelteComponentTyped<RadioProps, RadioEvents, RadioSlots> { } export {};