Veeam2 States Entities
Critical
- Preview
- Usage
- Definition
import { Critical } from '@dinghy/diagrams/entitiesVeeam2States'
<Critical/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CRITICAL } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, CRITICAL)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.critical;',
},
_original_width: 21,
_original_height: 21,
}
Delayed
- Preview
- Usage
- Definition
import { Delayed } from '@dinghy/diagrams/entitiesVeeam2States'
<Delayed/>
// or
import { extendStyle } from "@dinghy/base-components";
import { DELAYED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, DELAYED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.delayed;',
},
_original_width: 21,
_original_height: 21,
}
Ejected
- Preview
- Usage
- Definition
import { Ejected } from '@dinghy/diagrams/entitiesVeeam2States'
<Ejected/>
// or
import { extendStyle } from "@dinghy/base-components";
import { EJECTED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, EJECTED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.ejected;',
},
_original_width: 21,
_original_height: 21,
}
encrypted
- Preview
- Usage
- Definition
import { Encrypted } from '@dinghy/diagrams/entitiesVeeam2States'
<Encrypted/>
// or
import { extendStyle } from "@dinghy/base-components";
import { ENCRYPTED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, ENCRYPTED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.encrypted;',
},
_original_width: 21,
_original_height: 21,
}
Exported
- Preview
- Usage
- Definition
import { Exported } from '@dinghy/diagrams/entitiesVeeam2States'
<Exported/>
// or
import { extendStyle } from "@dinghy/base-components";
import { EXPORTED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, EXPORTED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.exported;',
},
_original_width: 21,
_original_height: 21,
}
Failed
- Preview
- Usage
- Definition
import { Failed } from '@dinghy/diagrams/entitiesVeeam2States'
<Failed/>
// or
import { extendStyle } from "@dinghy/base-components";
import { FAILED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, FAILED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.failed;',
},
_original_width: 21,
_original_height: 21,
}
Instant
- Preview
- Usage
- Definition
import { Instant } from '@dinghy/diagrams/entitiesVeeam2States'
<Instant/>
// or
import { extendStyle } from "@dinghy/base-components";
import { INSTANT } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, INSTANT)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.instant;',
},
_original_width: 21,
_original_height: 21,
}
Locked
- Preview
- Usage
- Definition
import { Locked } from '@dinghy/diagrams/entitiesVeeam2States'
<Locked/>
// or
import { extendStyle } from "@dinghy/base-components";
import { LOCKED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, LOCKED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.locked;',
},
_original_width: 21,
_original_height: 21,
}
Paused / saved
- Preview
- Usage
- Definition
import { PausedSaved } from '@dinghy/diagrams/entitiesVeeam2States'
<PausedSaved/>
// or
import { extendStyle } from "@dinghy/base-components";
import { PAUSED_SAVED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, PAUSED_SAVED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.paused;',
},
_original_width: 21,
_original_height: 21,
}
Recording
- Preview
- Usage
- Definition
import { Recording } from '@dinghy/diagrams/entitiesVeeam2States'
<Recording/>
// or
import { extendStyle } from "@dinghy/base-components";
import { RECORDING } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, RECORDING)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.recording;',
},
_original_width: 21,
_original_height: 21,
}
Restored
- Preview
- Usage
- Definition
import { Restored } from '@dinghy/diagrams/entitiesVeeam2States'
<Restored/>
// or
import { extendStyle } from "@dinghy/base-components";
import { RESTORED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, RESTORED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.restored;',
},
_original_width: 21,
_original_height: 21,
}
Running / Playing
- Preview
- Usage
- Definition
import { RunningPlaying } from '@dinghy/diagrams/entitiesVeeam2States'
<RunningPlaying/>
// or
import { extendStyle } from "@dinghy/base-components";
import { RUNNING_PLAYING } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, RUNNING_PLAYING)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.running_playing;',
},
_original_width: 21,
_original_height: 21,
}
Turn on / off
- Preview
- Usage
- Definition
import { TurnOnOff } from '@dinghy/diagrams/entitiesVeeam2States'
<TurnOnOff/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TURN_ON_OFF } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, TURN_ON_OFF)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.turn_on_off;',
},
_original_width: 21,
_original_height: 21,
}
Unavailable
- Preview
- Usage
- Definition
import { Unavailable } from '@dinghy/diagrams/entitiesVeeam2States'
<Unavailable/>
// or
import { extendStyle } from "@dinghy/base-components";
import { UNAVAILABLE } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, UNAVAILABLE)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.unavailable;',
},
_original_width: 21,
_original_height: 21,
}
Unlocked
- Preview
- Usage
- Definition
import { Unlocked } from '@dinghy/diagrams/entitiesVeeam2States'
<Unlocked/>
// or
import { extendStyle } from "@dinghy/base-components";
import { UNLOCKED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, UNLOCKED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.unlocked;',
},
_original_width: 21,
_original_height: 21,
}
Zipped
- Preview
- Usage
- Definition
import { Zipped } from '@dinghy/diagrams/entitiesVeeam2States'
<Zipped/>
// or
import { extendStyle } from "@dinghy/base-components";
import { ZIPPED } from '@dinghy/diagrams/entitiesVeeam2States'
<Shape
{...props}
_style={extendStyle(props, ZIPPED)}
/>
{
_style: {
entity: 'sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.zipped;',
},
_original_width: 21,
_original_height: 21,
}