nuxt-themes / alpine

The minimalist blog theme, powered by Nuxt & Markdown.
https://alpine.nuxt.space
MIT License
284 stars 57 forks source link

Wrong default icon name in `SocialIcons` #158

Open et84121 opened 11 months ago

et84121 commented 11 months ago

I would like to report a bug pertaining to the 'components/SocialIcons.vue' and 'nuxt.schema.ts'.

https://github.com/nuxt-themes/alpine/blob/46c2412569a1e0c439b4932590e47f316a5069cf/nuxt.schema.ts#L149-L154

The issue is that the Medium icon is not displaying correctly, as depicted in the image below:

image

The correct icon name should be uil:medium-m

https://icones.js.org/collection/uil?s=medium

Atinux commented 10 months ago

Happy to open a PR @et84121 ?

et84121 commented 10 months ago

Can I directly remove the predefined setup for Medium? I'd like to allow users to add their custom Medium social link directly.

example

'medium': {
   icon: 'uil:medium-m',
   label: 'Medium',
   href: 'https://medium.com/@bunnybit'
},