void/utils/types.ts
2022-10-21 23:53:34 +02:00

39 lines
569 B
TypeScript

export type SocialButton = {
id?: number;
icon: Icon;
platform: string;
username: string;
project?: null;
url?: string;
};
export type ProjectButton = {
id?: number;
icon: Icon;
project: string;
platform: string;
url?: string;
};
export type Icon =
| "x"
| "smile"
| "shuffle"
| "parallelogram"
| "messages"
| "link"
| "image"
| "hash"
| "graph"
| "globe"
| "git-branch"
| "envelope"
| "chevron-right"
| "chevron-left"
| "asterisk"
| "arrow-up-right"
| "arrow-right"
| "spotify"
| "arrow-right"
| "note"