svelte-boxicons
Version:
Svelte SVG boxicons components
66 lines (65 loc) • 1.97 kB
TypeScript
/** @typedef {typeof __propDef.props} BxsMessageRoundedErrorProps */
/** @typedef {typeof __propDef.events} BxsMessageRoundedErrorEvents */
/** @typedef {typeof __propDef.slots} BxsMessageRoundedErrorSlots */
/**
* [Go to docs](https://svelte-boxicons.codewithshin.com)
* ## Props
* @prop export let size = ctx.size || '24';
* @prop export let viewBox = ctx.viewBox || '0 0 24 24';
* @prop export let role = ctx.role || 'img';
* @prop export let color = ctx.color || 'currentColor';
* @prop export let strokeWidth = ctx.strokeWidth || '1.5';
* @prop export let ariaLabel = 'bxs message rounded error';
*/
export default class BxsMessageRoundedError extends SvelteComponentTyped<{
[x: string]: any;
size?: any;
viewBox?: any;
role?: any;
color?: any;
strokeWidth?: 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 BxsMessageRoundedErrorProps = typeof __propDef.props;
export type BxsMessageRoundedErrorEvents = typeof __propDef.events;
export type BxsMessageRoundedErrorSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
size?: any;
viewBox?: any;
role?: any;
color?: any;
strokeWidth?: 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 {};