import type { Component } from "solid-js" type BrandIconProps = { class?: string title?: string } export const GitHubMarkIcon: Component = (props) => ( {props.title ? {props.title} : null} ) export const DiscordSymbolIcon: Component = (props) => ( {props.title ? {props.title} : null} )