File size: 876 Bytes
9cd6ddb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { EditorType } from "types/editor";

export const DEFAULT_VALUE: EditorType = {
  icons: [
    {
      component: "King",
      colour: "#FFF",
      gradient: {
        enabled: false,
        colours: [],
        angle: 0,
        type: "linear-gradient",
      },
      border: {
        width: 0,
        colour: "#FFFFFF",
      },
      shadow: {
        enabled: false,
        colour: "#FEE75C",
        position: {
          x: 0,
          y: 0,
          blur: 16,
        },
      },
      transparency: 100,
    },
  ],
  shape: {
    component: "Badge",
    colour: "#5865F1",
    gradient: {
      enabled: false,
      colours: [],
      angle: 90,
      type: "linear-gradient",
    },
    position: {
      angle: 0,
      scale: 1,
    },
    radius: 40,
    border: {
      width: 0,
      colour: "#ffffff",
    },
    transparency: false,
  },
};