mirror of
https://github.com/unraid/api.git
synced 2026-01-03 15:09:48 -06:00
20 lines
448 B
TypeScript
20 lines
448 B
TypeScript
import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
|
|
export interface UserProfileLink {
|
|
click?: any; // @todo be more specific
|
|
disabled?: boolean;
|
|
emphasize?: boolean;
|
|
external?: boolean;
|
|
href?: string;
|
|
icon?: typeof ArrowTopRightOnSquareIcon;
|
|
name?: string;
|
|
text: string;
|
|
title?: string;
|
|
}
|
|
|
|
export interface UserProfilePromoFeature {
|
|
copy: string;
|
|
icon?: typeof ArrowTopRightOnSquareIcon;
|
|
title: string;
|
|
}
|