export function RountangleIcon(props: { kind: string; }) {
return ;
}
export function PseudoStateIcon(props: {}) {
const w = 20, h = 20;
return ;
}
export function HistoryIcon(props: { kind: "shallow" | "deep"; }) {
const w = 20, h = 20;
const text = props.kind === "shallow" ? "H" : "H*";
return ;
}