mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
10 lines
350 B
TypeScript
10 lines
350 B
TypeScript
import type { JSX } from '@ionic/core/components';
|
|
import { defineCustomElement } from '@ionic/core/components/ion-alert.js';
|
|
|
|
import { createInlineOverlayComponent } from './createInlineOverlayComponent';
|
|
|
|
export const IonAlert = /*@__PURE__*/ createInlineOverlayComponent<JSX.IonAlert, HTMLIonAlertElement>(
|
|
'ion-alert',
|
|
defineCustomElement
|
|
);
|