You can also make your own:
shape main{
//Initialisation attributes
h_align = "center";
v_align = "center";
// Draw component diagram
setpenwidth(2);
rectangle(0,0,120,90);
image ("Logo.bmp",0,0,20,18);
startpath();
moveto(105,5);
lineto(115,5);
lineto(115,30);
lineto(105,30);
endpath();
fillandstrokepath();
startpath();
moveto(100,10);
lineto(110,10);
lineto(110,15);
lineto(100,15);
endpath();
fillandstrokepath();
startpath();
moveto(100,20);
lineto(110,20);
lineto(110,25);
lineto(100,25);
endpath();
fillandstrokepath();
// Print name and status in the component element
println("#stereotype#");
println("#name#");
}
Greetings,
Eric