mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
import GitHubIcon from '~icons/ri/github-fill'
|
|
|
|
export const useSocialLinks = () => {
|
|
return [
|
|
{
|
|
link: 'https://github.com/element-plus/element-plus',
|
|
icon: GitHubIcon,
|
|
text: 'GitHub',
|
|
},
|
|
]
|
|
}
|