import type { LinkHTMLAttributes } from 'vue'; import type { HeroIcon } from '../../types/heroicons'; export interface TLinkProps extends LinkHTMLAttributes { variant?: 'primary' | 'secondary' | 'tertiary'; size?: 'large' | 'medium' | 'small'; leftIcon?: HeroIcon; rightIcon?: HeroIcon; content?: string; } //# sourceMappingURL=TLink.types.d.ts.map