15 lines
336 B
TypeScript
15 lines
336 B
TypeScript
![]() |
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
|
||
|
};
|