mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
10 lines
382 B
TypeScript
10 lines
382 B
TypeScript
import type { JSX } from '@ionic/core/components';
|
|
import { defineCustomElement } from '@ionic/core/components/ion-action-sheet.js';
|
|
|
|
import { createInlineOverlayComponent } from './createInlineOverlayComponent';
|
|
|
|
export const IonActionSheet = /*@__PURE__*/ createInlineOverlayComponent<JSX.IonActionSheet, HTMLIonActionSheetElement>(
|
|
'ion-action-sheet',
|
|
defineCustomElement
|
|
);
|