blob: eb492d26590ebf69b77652009a7cb145e55b66be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { faHome, faPencilAlt, faEye } from '@fortawesome/free-solid-svg-icons'
export const AUTH_ICON_MAP = {
OWN: faHome,
EDIT: faPencilAlt,
VIEW: faEye,
}
export const AUTH_DESCRIPTION_MAP = {
OWN: 'Own',
EDIT: 'Can Edit',
VIEW: 'Can View',
}
|