tikz で suncross を作るにはどうすればいいですか?

tikz で suncross を作るにはどうすればいいですか?

私の質問はタイトルにあります。私は太陽十字を指す矢印を作りたいのですがこれ? 矢印は自分で作れますが、サンクロスを作るのを手伝ってもらえますか?

答え1

信号変調器の乗算器に似せて、十字のシンボルが入った円形のノードを描きます。

ここに画像の説明を入力してください

\documentclass{article}
\usepackage{tikz} 
\usetikzlibrary{calc}

\begin{document}
    \begin{tikzpicture}[cross/.style={path picture={ 
                \draw[black,line width=1pt]
                (path picture bounding box.south east) -- (path picture bounding 
        box.north west) (path picture bounding box.south west) -- (path picture 
          bounding box.north east);
        }}]
        
        \node [draw,circle,cross,minimum width=1 cm,line width=1pt](B) at (3,0){}; 
        \draw[<-,line width=1pt,stealth-] (B.south 
        west)to[out=225,in=75,looseness=1.3]($(B.south)+(-3,-6)$);
        
    \end{tikzpicture}
    
\end{document} 

関連情報