Co-authored-by: terraputix <terraputix@mailbox.org> Reviewed-on: useweb/ombrella#2
16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
import Description from './alert-description.svelte';
|
|
import Title from './alert-title.svelte';
|
|
import Root from './alert.svelte';
|
|
|
|
export { alertVariants, type AlertVariant } from './alert.svelte';
|
|
|
|
export {
|
|
Root,
|
|
Description,
|
|
Title,
|
|
//
|
|
Root as Alert,
|
|
Description as AlertDescription,
|
|
Title as AlertTitle
|
|
};
|