social-links.ts 222 B

1234567891011
  1. import GitHubIcon from '~icons/ri/github-fill'
  2. export const useSocialLinks = () => {
  3. return [
  4. {
  5. link: 'https://github.com/element-plus/element-plus',
  6. icon: GitHubIcon,
  7. text: 'GitHub',
  8. },
  9. ]
  10. }