UNPKG

svelte-oct

Version:
60 lines (59 loc) 1.63 kB
/** @typedef {typeof __propDef.props} Code24Props */ /** @typedef {typeof __propDef.events} Code24Events */ /** @typedef {typeof __propDef.slots} Code24Slots */ /** * [Go to docs](https://svelte-oct.codewithshin.com/) * ## Props * @prop export let size = ctx.size || '24'; * @prop export let role = ctx.role || 'img'; * @prop export let color = ctx.color || 'currentColor'; * @prop export let ariaLabel = 'code 24'; */ export default class Code24 extends SvelteComponentTyped<{ [x: string]: any; size?: any; role?: any; color?: any; ariaLabel?: string | undefined; }, { click: MouseEvent; keydown: KeyboardEvent; keyup: KeyboardEvent; focus: FocusEvent; blur: FocusEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; mouseout: MouseEvent; } & { [evt: string]: CustomEvent<any>; }, {}> { } export type Code24Props = typeof __propDef.props; export type Code24Events = typeof __propDef.events; export type Code24Slots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; size?: any; role?: any; color?: any; ariaLabel?: string | undefined; }; events: { click: MouseEvent; keydown: KeyboardEvent; keyup: KeyboardEvent; focus: FocusEvent; blur: FocusEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; mouseout: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};