blob: 5e0f854da6f6184a15f5d70e7872193945ac5729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import Root from './alert.svelte';
import Description from './alert-description.svelte';
import Title from './alert-title.svelte';
export { alertVariants, type AlertVariant } from './alert.svelte';
export {
Root,
Description,
Title,
//
Root as Alert,
Description as AlertDescription,
Title as AlertTitle
};
|