import * as React from "react"; export interface props { size: number; color: string; } export default function AppIcon(props: props) { return ( <> ); }