@synergy-design-system/react
Version:
React wrappers for the Synergy Design System
23 lines (22 loc) • 1.19 kB
TypeScript
import Component from '@synergy-design-system/components/components/icon/icon.component.js';
import { type EventName } from '@lit/react';
import type { SynLoadEvent } from '@synergy-design-system/components';
import type { SynErrorEvent } from '@synergy-design-system/components';
/**
* @summary Icons are symbols that can be used to represent various options within an application.
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-icon--docs
* @status stable
* @since 2.0
*
* @event syn-load - Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit.
* @event syn-error - Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit.
*
* @csspart svg - The internal SVG element.
* @csspart use - The <use> element generated when using `spriteSheet: true`
*/
export declare const SynIcon: import("@lit/react").ReactWebComponent<Component, {
onSynLoad: EventName<SynLoadEvent>;
onSynError: EventName<SynErrorEvent>;
}>;
export type { SynLoadEvent } from '@synergy-design-system/components';
export type { SynErrorEvent } from '@synergy-design-system/components';