-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.ts
More file actions
35 lines (31 loc) · 732 Bytes
/
users.ts
File metadata and controls
35 lines (31 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
type User = {
name: string;
image: string;
link: string;
width?: number;
height?: number;
};
type Users = User[];
const users: Users = [
{
name: 'Personnummer',
image: 'https://avatars.githubusercontent.com/u/32910698?s=200&v=4',
link: 'https://personnummer.dev/'
},
{
name: 'Organisationsnummer',
image: 'https://avatars.githubusercontent.com/u/96255764?s=200&v=4',
link: 'https://organisationsnummer.dev/'
}
/* example */
/*
{
name: 'Personnummer',
image: 'https://avatars.githubusercontent.com/u/32910698?s=200&v=4',
width 100, // default
height: 100, // default
link: 'https://personnummer.dev/'
}
*/
];
export default users;