import React from "react"; export interface props { size: number; color: string; } export default function AppLogo(props: props) { return (
); }