Proc Eng Engines Entities
Electric Motor
- Preview
- Usage
- Definition
import { ElectricMotor } from '@dinghy/diagrams/entitiesProcEngEngines'
<ElectricMotor/>
// or
import { extendStyle } from "@dinghy/base-components";
import { ELECTRIC_MOTOR } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, ELECTRIC_MOTOR)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.electric_motor;fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Electric Motor (AC)
- Preview
- Usage
- Definition
import { ElectricMotorAc } from '@dinghy/diagrams/entitiesProcEngEngines'
<ElectricMotorAc/>
// or
import { extendStyle } from "@dinghy/base-components";
import { ELECTRIC_MOTOR_AC } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, ELECTRIC_MOTOR_AC)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.electric_motor_(ac);fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Electric Motor (DC)
- Preview
- Usage
- Definition
import { ElectricMotorDc } from '@dinghy/diagrams/entitiesProcEngEngines'
<ElectricMotorDc/>
// or
import { extendStyle } from "@dinghy/base-components";
import { ELECTRIC_MOTOR_DC } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, ELECTRIC_MOTOR_DC)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.electric_motor_(dc);fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Gear
- Preview
- Usage
- Definition
import { Gear } from '@dinghy/diagrams/entitiesProcEngEngines'
<Gear/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GEAR } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, GEAR)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.gear;fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Generator
- Preview
- Usage
- Definition
import { Generator } from '@dinghy/diagrams/entitiesProcEngEngines'
<Generator/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GENERATOR } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, GENERATOR)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.generator;fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Generator (AC)
- Preview
- Usage
- Definition
import { GeneratorAc } from '@dinghy/diagrams/entitiesProcEngEngines'
<GeneratorAc/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GENERATOR_AC } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, GENERATOR_AC)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.generator_(ac);fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Generator (DC)
- Preview
- Usage
- Definition
import { GeneratorDc } from '@dinghy/diagrams/entitiesProcEngEngines'
<GeneratorDc/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GENERATOR_DC } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, GENERATOR_DC)}
/>
{
_style: {
entity: 'dashed=0;outlineConnect=0;align=center;html=1;shape=mxgraph.pid.engines.generator_(dc);fontSize=45;',
},
_original_width: 100,
_original_height: 100,
}
Turbine
- Preview
- Usage
- Definition
import { Turbine } from '@dinghy/diagrams/entitiesProcEngEngines'
<Turbine/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TURBINE } from '@dinghy/diagrams/entitiesProcEngEngines'
<Shape
{...props}
_style={extendStyle(props, TURBINE)}
/>
{
_style: {
entity: 'verticalLabelPosition=bottom;align=center;dashed=0;html=1;verticalAlign=top;shape=mxgraph.pid.engines.turbine',
},
_width: 70,
_height: 100,
}