@solfacil/girassol
Version:
Girassol design system
15 lines (14 loc) • 343 B
TypeScript
import type { NuxtLinkResolved } from "@/types";
export type Item = {
href: string;
text: string;
target?: '_blank' | '_self' | '_parent' | '_top';
rel?: string;
};
export interface Breadcrumb {
id: string;
items?: Item[];
gtmId?: string;
linkTag?: 'a' | 'router-link' | NuxtLinkResolved;
dark?: boolean;
}