import { SVGProps } from 'react'; // Icons taken from: https://simpleicons.org/ // To add a new icon, add a new function here and add it to components in social-icons/index.tsx export function Facebook(svgProps: SVGProps) { return ( ); } export function Github(svgProps: SVGProps) { return ( ); } export function Linkedin(svgProps: SVGProps) { return ( ); } export function Mail(svgProps: SVGProps) { return ( ); } export function Twitter(svgProps: SVGProps) { return ( ); } export function Youtube(svgProps: SVGProps) { return ( ); } export function Mastodon(svgProps: SVGProps) { return ( ); }