28 lines
421 B
TypeScript
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";
|