Skip to content

Commit

Permalink
feat(presets.ts): add VueJS preset to the list of all presets
Browse files Browse the repository at this point in the history
  • Loading branch information
lyqht committed Aug 7, 2023
1 parent 3b620a7 commit fb76bf5
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion src/utils/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,32 @@ export const vuei18nPreset = {
}
}

export const vueJsPreset = {
...defaultPresetOptions,
name: 'VueJS',
data: 'https://vuejs.org/',
image: 'https://api.iconify.design/logos:vue.svg',
dotsOptions: {
color: '#35495e',
type: 'rounded'
},
cornersSquareOptions: {
color: '#40b883',
type: 'extra-rounded'
},
cornersDotOptions: {
color: '#40b883',
type: 'dot'
},
imageOptions: {
margin: 2
},
style: {
borderRadius: '12px',
background: '#ffffff'
}
}

// Individual presets

export const defaultPreset: Preset = {
Expand Down Expand Up @@ -196,10 +222,11 @@ export const pejuangKodePreset = {
export const allPresets = [
defaultPreset,
padletPreset,
uiliciousPreset,
supabasePreset,
vercelLightPreset,
vercelDarkPreset,
uiliciousPreset,
vueJsPreset,
vuei18nPreset,
pejuangKodePreset
]

0 comments on commit fb76bf5

Please sign in to comment.