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

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