UNPKG

svelte-cssgg-icons

Version:
60 lines (59 loc) 1.64 kB
/** @typedef {typeof __propDef.props} EditMaskProps */ /** @typedef {typeof __propDef.events} EditMaskEvents */ /** @typedef {typeof __propDef.slots} EditMaskSlots */ /** * [Go to docs](https://svelte-cssgg-icons.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 = 'edit mask'; */ export default class EditMask extends SvelteComponent<{ [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 EditMaskProps = typeof __propDef.props; export type EditMaskEvents = typeof __propDef.events; export type EditMaskSlots = typeof __propDef.slots; import { SvelteComponent } 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 {};