void/utils/types.ts
2022-07-30 23:59:56 +02:00

28 lines
421 B
TypeScript

export type SocialButton = {
id: number;
icon: Icon;
platform: string;
username: 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";