If I use this set of instructions, the display is correct:
@startuml
!define osaPuml
https://raw.githubusercontent.com/Crashedmind/PlantUML-opensecurityarchitecture2-icons/master
!include osaPuml/Common.puml
!include osaPuml/User/all.puml
!include osaPuml/Hardware/all.puml
!include osaPuml/Misc/all.puml
!include osaPuml/Server/all.puml
!include osaPuml/Site/all.puml
title Deployment
' Network
Network: <$osa_device_wireless_router>
@enduml
If I change it as shown below, there is a "C" displayed in the rectangle:
@startuml
!define osaPuml
https://raw.githubusercontent.com/Crashedmind/PlantUML-opensecurityarchitecture2-icons/master
!include osaPuml/Common.puml
!include osaPuml/User/all.puml
!include osaPuml/Hardware/all.puml
!include osaPuml/Misc/all.puml
!include osaPuml/Server/all.puml
!include osaPuml/Site/all.puml
title Deployment
' Network
package Customer_Supplied {
Network : <$osa_device_wireless_router>
}
@enduml
Am I doing something wrong or is there a better way to approach this?
Thank you