2024-10-06 13:27:18 +02:00
|
|
|
export interface ComponentProps {
|
2025-02-15 14:59:32 +01:00
|
|
|
class?: string
|
|
|
|
title?: string
|
2024-10-06 13:27:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface LinkProps extends ComponentProps {
|
2025-02-15 14:59:32 +01:00
|
|
|
href: string
|
2024-10-06 13:27:18 +02:00
|
|
|
}
|