Ibm Actors Entities
Application
- Preview
- Usage
- Definition
import { Application } from '@dinghy/diagrams/entitiesIbmCloudActors'
<Application/>
// or
import { extendStyle } from "@dinghy/base-components";
import { APPLICATION } from '@dinghy/diagrams/entitiesIbmCloudActors'
<Shape
{...props}
_style={extendStyle(props, APPLICATION)}
/>
{
_style: {
entity: 'shape=ellipse;fillColor=#A56EFF;aspect=fixed;resizable=0;labelPosition=center;verticalLabelPosition=bottom;align=center;verticalAlign=top;strokeColor=none;fontSize=14;',
},
_width: 0,
_height: 48,
}
User
- Preview
- Usage
- Definition
import { User } from '@dinghy/diagrams/entitiesIbmCloudActors'
<User/>
// or
import { extendStyle } from "@dinghy/base-components";
import { USER } from '@dinghy/diagrams/entitiesIbmCloudActors'
<Shape
{...props}
_style={extendStyle(props, USER)}
/>
{
_style: {
entity: 'shape=ellipse;fillColor=#000000;aspect=fixed;resizable=0;labelPosition=center;verticalLabelPosition=bottom;align=center;verticalAlign=top;strokeColor=none;fontSize=14;',
},
_width: 0,
_height: 48,
}