/** * Define properties for the Social component */ export interface SocialProperties { networks: SocialNetworkProperties[]; } export type SocialNetworkProperties = { size?: number; color?: string; link?: string; name: 'facebook' | 'instagram' | 'linkedin' | 'twitter' | 'youtube'; }; export type NetworkIconProperties = Omit;