import type { VariantProps } from "class-variance-authority" import { cva } from "class-variance-authority" export { default as SocialIcon } from "./SocialIcon.vue" export type SocialIconVariant = 'default' | 'linkedin' | 'xing' | 'github' | 'instagram' | 'twitter' | 'x' | 'slack' | 'teams' | 'matrix' | 'bluesky' | 'mastodon' | 'whatsapp' | 'telegram' | 'threema' ; export const socialIconVariants: Record = { default: ` `, linkedin: ` `, xing: ` `, github: ` `, instagram: ` `, twitter: ` `, x: ` `, slack: ` `, teams: ` `, matrix: ` `, bluesky: ` `, mastodon: ` `, whatsapp: ` `, telegram: ` `, threema: ` `, }