Skip to main content

Icon Step Component

The icon step component is represented by a circle with an icon inside. It is useful for well-known steps like "Stop", "Break", "Error", "Success", etc.

Example
Pro

This component is available only in the Pro version.

Properties

PropertyTypeDescription
componentTypestringThe type of the component. To use the icon step component you must set it to icon.
idstringThe unique identifier of the step. We recommend to use the next() function from the Uid class to generate it.
namestringThe name of the step.
typestringYour custom type of the step.
propertiesobjectThe properties of the step.

Example

const step = {
componentType: 'icon',
id: '2a11d8498af26cdb67e2f27171e82f8e',
name: 'Save file',
type: 'Save file',
properties: {
variableName: 'buffer',
path: 'C:\\temp.txt'
}
};

Customization

Pro Only

This part of the article is available only for subscribers of the pro package. Buy the pro package to get an access to this part.

If you have already subscription please log in.