Rein mit Hausmitteln so:
Sollte am besten zum neuen Kommando werden.
![alt text][1]
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes}
\tikzset{ArrowStyle/.style = {single arrow, draw=blue, fill=red!50, align=center, pos=0.5, text width=10ex, text height=2ex}}
%=========
\begin{document}
%=========
\begin{tikzpicture}[font=\footnotesize]
\node [ArrowStyle] {Hier der \\ Text};
\end{tikzpicture}
%=========
\end{document}
%=========
Für das angegebene Minibsp. wird damit *beispielsweise*:
![alt text][2]
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes}
\tikzset{ArrowStyle/.style = {single arrow, draw=blue, fill=red!50, align=center, pos=0.5, text width=10ex, text height=2ex, }}
%=========
\begin{document}
%=========
\begin{tikzpicture}
\draw (0,0) rectangle (6,4) node[pos=.5] {\Large\textbf{Black-Box}};
% Eingangsgrößen
\draw[draw=none] (-3,0.5) -- (-0.5,0.5) node[above, midway, ArrowStyle]{Stoff};
\draw[draw=none] (-3,2) -- (-0.5,2) node[above, midway, ArrowStyle]{Energie};
\draw[draw=none] (-3,3.5) -- (-0.5,3.5)node[above, midway, ArrowStyle]{Signal};
% Ausgangsgrößen
\draw[, draw=none] (9,0.5) -- (6.5,0.5) node[above, midway, ArrowStyle]{Stoff};
\draw[, draw=none] (9,2) -- (6.5,2) node[above, midway, ArrowStyle]{Energie};
\draw[, draw=none] (9,3.5) -- (6.5,3.5) node[above, midway, ArrowStyle]{Signal};
\end{tikzpicture}
%=========
\end{document}
%=========
Man könnte auch `draw` durch `path` ersetzen oder gleiche gleich nodes verwenden, was mit den `shapes`-Pfeilen inzw. logischer erscheint.
[1]: http://texwelt.de/wissen/upfiles/Namenlos-11e4xxx1.png
[2]: http://texwelt.de/wissen/upfiles/Namenlos-11e4xxx1_1.png