1import Root from './card.svelte';
2import Content from './card-content.svelte';
3import Description from './card-description.svelte';
4import Footer from './card-footer.svelte';
5import Header from './card-header.svelte';
6import Title from './card-title.svelte';
7import Action from './card-action.svelte';
8
9export {
10 Root,
11 Content,
12 Description,
13 Footer,
14 Header,
15 Title,
16 Action,
17 //
18 Root as Card,
19 Content as CardContent,
20 Description as CardDescription,
21 Footer as CardFooter,
22 Header as CardHeader,
23 Title as CardTitle,
24 Action as CardAction
25};