mirror of
https://github.com/unraid/api.git
synced 2026-01-02 22:50:02 -06:00
19 lines
426 B
TypeScript
19 lines
426 B
TypeScript
import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
|
|
export interface UserProfileLink {
|
|
click?: any; // @todo be more specific
|
|
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;
|
|
}
|