mirror of
https://github.com/unraid/api.git
synced 2026-01-04 23:50:37 -06:00
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
|
|
export interface UserProfileLink {
|
|
emphasize?: boolean;
|
|
external?: boolean;
|
|
href: string;
|
|
icon?: typeof ArrowTopRightOnSquareIcon;
|
|
text: string;
|
|
title?: string;
|
|
}
|