Archimate3 Relationships Entities
And Junction
- Preview
- Usage
- Definition
import { AndJunction } from '@dinghy/diagrams/entitiesArchimate3Relationships'
<AndJunction/>
// or
import { extendStyle } from "@dinghy/base-components";
import { AND_JUNCTION } from '@dinghy/diagrams/entitiesArchimate3Relationships'
<Shape
{...props}
_style={extendStyle(props, AND_JUNCTION)}
/>
{
_style: {
entity: 'ellipse;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;fillColor=strokeColor',
},
_original_width: 10,
_original_height: 10,
}
Or Junction
- Preview
- Usage
- Definition
import { OrJunction } from '@dinghy/diagrams/entitiesArchimate3Relationships'
<OrJunction/>
// or
import { extendStyle } from "@dinghy/base-components";
import { OR_JUNCTION } from '@dinghy/diagrams/entitiesArchimate3Relationships'
<Shape
{...props}
_style={extendStyle(props, OR_JUNCTION)}
/>
{
_style: {
entity: 'ellipse;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;fillColor=#ffffff',
},
_original_width: 10,
_original_height: 10,
}