mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
|
import GitHubIcon from '../components/icons/github.vue'
|
||
|
|
||
|
export const useSocialLinks = () => {
|
||
|
return [
|
||
|
{
|
||
|
link: 'https://github.com/element-plus/element-plus',
|
||
|
icon: GitHubIcon,
|
||
|
text: 'GitHub',
|
||
|
},
|
||
|
]
|
||
|
}
|