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 ( Facebook ) } export function Github(svgProps: SVGProps) { return ( GitHub ) } export function Linkedin(svgProps: SVGProps) { return ( Linkedin ) } export function Mail(svgProps: SVGProps) { return ( Mail ) } export function Twitter(svgProps: SVGProps) { return ( Twitter ) } export function X(svgProps: SVGProps) { return ( X ) } export function Youtube(svgProps: SVGProps) { return ( Youtube ) } export function Mastodon(svgProps: SVGProps) { return ( Mastodon ) } export function Threads(svgProps: SVGProps) { return ( Threads ) } export function Instagram(svgProps: SVGProps) { return ( Instagram ) }