mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-28 06:15:54 +00:00
18 lines
393 B
TypeScript
18 lines
393 B
TypeScript
import Root from "./alert.svelte";
|
|
import Description from "./alert-description.svelte";
|
|
import Title from "./alert-title.svelte";
|
|
import Action from "./alert-action.svelte";
|
|
export { alertVariants, type AlertVariant } from "./alert.svelte";
|
|
|
|
export {
|
|
Root,
|
|
Description,
|
|
Title,
|
|
Action,
|
|
//
|
|
Root as Alert,
|
|
Description as AlertDescription,
|
|
Title as AlertTitle,
|
|
Action as AlertAction,
|
|
};
|