mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 09:01:21 +00:00
24 lines
541 B
TypeScript
24 lines
541 B
TypeScript
import Root from './card.svelte';
|
|
import Content from './card-content.svelte';
|
|
import Description from './card-description.svelte';
|
|
import Footer from './card-footer.svelte';
|
|
import Header from './card-header.svelte';
|
|
import Title from './card-title.svelte';
|
|
|
|
export {
|
|
Root,
|
|
Content,
|
|
Description,
|
|
Footer,
|
|
Header,
|
|
Title,
|
|
//
|
|
Root as Card,
|
|
Content as CardContent,
|
|
Description as CardDescription,
|
|
Footer as CardFooter,
|
|
Header as CardHeader,
|
|
Title as CardTitle
|
|
};
|
|
|
|
export type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|