Files
api/types/userProfile.ts
2023-08-07 17:51:28 -07:00

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;
}