Spaces:
Running
Running
| 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, | |
| }, | |
| }; | |