Skip to content

Icons

Using our API, you can register your own icon sets for usage within the CE.SDK editor. The API is as follows:

Add new Icon Set

cesdk.ui.addIconSet(id: string, svgSprite: string)

The icon set is a string containing a SVG sprite with symbols. The id of each symbol is used to reference the icon in the editor. These ids need to start with a @ to be recognized in the editor.

Examples

Register an Icon Set

Registering an SVG string with a single symbol might look like this:

cesdk.ui.addIconSet(
'@imgly/custom',
`
<svg>
<symbol
fill="none"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
id="@some/icon/ZoomIn"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M3 7.5C3 5.01472 5.01472 3 7.5 3C9.98528 3 12 5.01472 12 7.5C12 9.98528 9.98528 12 7.5 12C5.01472 12 3 9.98528 3 7.5ZM7.5 2C4.46243 2 2 4.46243 2 7.5C2 10.5376 4.46243 13 7.5 13C8.74835 13 9.89957 12.5841 10.8226 11.8833L10.9697 12.0303L12.4697 13.5303L13 14.0607L14.0607 13L13.5303 12.4697L12.0303 10.9697L11.8833 10.8226C12.5841 9.89957 13 8.74835 13 7.5C13 4.46243 10.5376 2 7.5 2ZM7 7V5H8V7H10V8H8V10H7V8H5V7H7Z"
fill="currentColor"
fillOpacity="0.9"
/>
</symbol>
</svg>
`,
);

Replace a Dock Icon

You could use your custom icon set to replace the “Image” icon of the default Dock:

cesdk.ui.setDockOrder(
cesdk.ui.getDockOrder().map(entry => {
if (entry.key === 'ly.img.image')
return {
...entry,
icon: '@some/icon/ZoomIn', // Note the ID referencing the SVG symbol
};
else return entry;
}),
);

Use within a custom Component

Using your new symbol in a custom component is then done by referencing the symbol ID directly:

cesdk.ui.registerComponent('CustomIcon', ({ builder: { Button } }) => {
Button('customIcon', {
label: 'Custom Icon',
icon: '@some/icon/ZoomIn', // Note the ID referencing the SVG symbol
onClick: () => {
console.log('Custom Icon clicked');
},
});
});

Built-In Icons

These built-in icons can be referenced by their name string directly:

Set ‘Essentials’

NameIcon
@imgly/AdjustmentsAdjustments Icon
@imgly/AnimationAnimation Icon
@imgly/AppearanceAppearance Icon
@imgly/AppsApps Icon
@imgly/ArrowDownArrowDown Icon
@imgly/ArrowLeftArrowLeft Icon
@imgly/ArrowRightArrowRight Icon
@imgly/ArrowUpArrowUp Icon
@imgly/ArrowsDirectionHorizontalArrowsDirectionHorizontal Icon
@imgly/ArrowsDirectionVerticalArrowsDirectionVertical Icon
@imgly/AsClipAsClip Icon
@imgly/AsOverlayAsOverlay Icon
@imgly/AudioAudio Icon
@imgly/AudioAddAudioAdd Icon
@imgly/BackwardBackward Icon
@imgly/BlendmodeBlendmode Icon
@imgly/BlurBlur Icon
@imgly/BooleanExcludeBooleanExclude Icon
@imgly/BooleanIntersectBooleanIntersect Icon
@imgly/BooleanSubstractBooleanSubstract Icon
@imgly/BooleanUnionBooleanUnion Icon
@imgly/CaseAsTypedCaseAsTyped Icon
@imgly/CaseLowercaseCaseLowercase Icon
@imgly/CaseSmallCapsCaseSmallCaps Icon
@imgly/CaseTitleCaseCaseTitleCase Icon
@imgly/CaseUppercaseCaseUppercase Icon
@imgly/CheckboxCheckmarkCheckboxCheckmark Icon
@imgly/CheckboxMixedCheckboxMixed Icon
@imgly/CheckmarkCheckmark Icon
@imgly/ChevronDownChevronDown Icon
@imgly/ChevronLeftChevronLeft Icon
@imgly/ChevronRightChevronRight Icon
@imgly/ChevronUpChevronUp Icon
@imgly/CollageCollage Icon
@imgly/ColorFillColorFill Icon
@imgly/ColorGradientAngularColorGradientAngular Icon
@imgly/ColorGradientLinearColorGradientLinear Icon
@imgly/ColorGradientRadialColorGradientRadial Icon
@imgly/ColorOpacityColorOpacity Icon
@imgly/ColorSolidColorSolid Icon
@imgly/ConnectionLostSlashConnectionLostSlash Icon
@imgly/CopyCopy Icon
@imgly/CornerJoinBevelCornerJoinBevel Icon
@imgly/CornerJoinMiterCornerJoinMiter Icon
@imgly/CornerJoinRoundCornerJoinRound Icon
@imgly/CropCrop Icon
@imgly/CropCoverModeCropCoverMode Icon
@imgly/CropCropModeCropCropMode Icon
@imgly/CropFitModeCropFitMode Icon
@imgly/CropFreefromModeCropFreefromMode Icon
@imgly/CrossCross Icon
@imgly/CrossRoundSolidCrossRoundSolid Icon
@imgly/CustomLibraryCustomLibrary Icon
@imgly/DownloadDownload Icon
@imgly/DropShadowDropShadow Icon
@imgly/DuplicateDuplicate Icon
@imgly/EditEdit Icon
@imgly/EffectsEffects Icon
@imgly/ExternalLinkExternalLink Icon
@imgly/EyeClosedEyeClosed Icon
@imgly/EyeOpenEyeOpen Icon
@imgly/FilterFilter Icon
@imgly/FlipHorizontalFlipHorizontal Icon
@imgly/FlipVerticalFlipVertical Icon
@imgly/FontAutoSizingFontAutoSizing Icon
@imgly/FontSizeFontSize Icon
@imgly/ForwardForward Icon
@imgly/FullscreenEnterFullscreenEnter Icon
@imgly/FullscreenLeaveFullscreenLeave Icon
@imgly/GroupGroup Icon
@imgly/GroupEnterGroupEnter Icon
@imgly/GroupExitGroupExit Icon
@imgly/HomeHome Icon
@imgly/ImageImage Icon
@imgly/InfoInfo Icon
@imgly/LayerBringForwardLayerBringForward Icon
@imgly/LayerBringForwardArrowLayerBringForwardArrow Icon
@imgly/LayerBringToFrontLayerBringToFront Icon
@imgly/LayerBringToFrontArrowLayerBringToFrontArrow Icon
@imgly/LayerOpacityLayerOpacity Icon
@imgly/LayerSendBackwardLayerSendBackward Icon
@imgly/LayerSendBackwardArrowLayerSendBackwardArrow Icon
@imgly/LayerSendToBackLayerSendToBack Icon
@imgly/LayerSendToBackArrowLayerSendToBackArrow Icon
@imgly/LayoutHorizontalLayoutHorizontal Icon
@imgly/LayoutVerticalLayoutVertical Icon
@imgly/LibraryLibrary Icon
@imgly/LineHeightLineHeight Icon
@imgly/LinkClosedLinkClosed Icon
@imgly/LinkOpenLinkOpen Icon
@imgly/LoopClipLoopClip Icon
@imgly/LoadingSpinnerLoadingSpinner Icon
@imgly/LockClosedLockClosed Icon
@imgly/LockOpenLockOpen Icon
@imgly/MinusMinus Icon
@imgly/MoreOptionsHorizontalMoreOptionsHorizontal Icon
@imgly/MoreOptionsVerticalMoreOptionsVertical Icon
@imgly/MoveMove Icon
@imgly/NextNext Icon
@imgly/NoneNone Icon
@imgly/ObjectAlignBottomObjectAlignBottom Icon
@imgly/ObjectAlignDistributedHorizontalObjectAlignDistributedHorizontal Icon
@imgly/ObjectAlignDistributedVerticalObjectAlignDistributedVertical Icon
@imgly/ObjectAlignHorizontalCenterObjectAlignHorizontalCenter Icon
@imgly/ObjectAlignLeftObjectAlignLeft Icon
@imgly/ObjectAlignRightObjectAlignRight Icon
@imgly/ObjectAlignTopObjectAlignTop Icon
@imgly/ObjectAlignVerticalCenterObjectAlignVerticalCenter Icon
@imgly/OrientationToggleLandscapeOrientationToggleLandscape Icon
@imgly/OrientationTogglePortraitOrientationTogglePortrait Icon
@imgly/PageResizePageResize Icon
@imgly/PastePaste Icon
@imgly/PausePause Icon
@imgly/PlaceholderConnectedPlaceholderConnected Icon
@imgly/PlaceholderStripesPlaceholderStripes Icon
@imgly/PlayPlay Icon
@imgly/PlusPlus Icon
@imgly/PositionPosition Icon
@imgly/PreviousPrevious Icon
@imgly/RedoRedo Icon
@imgly/RenameRename Icon
@imgly/ReorderReorder Icon
@imgly/RepeatRepeat Icon
@imgly/RepeatOffRepeatOff Icon
@imgly/ReplaceReplace Icon
@imgly/ResetReset Icon
@imgly/RotateCCW90RotateCCW90 Icon
@imgly/RotateCWRotateCW Icon
@imgly/RotateCW90RotateCW90 Icon
@imgly/SaveSave Icon
@imgly/ScaleScale Icon
@imgly/SearchSearch Icon
@imgly/SettingsSettings Icon
@imgly/SettingsCogSettingsCog Icon
@imgly/ShapeOvalShapeOval Icon
@imgly/ShapePolygonShapePolygon Icon
@imgly/ShapeRectangleShapeRectangle Icon
@imgly/ShapeStarShapeStar Icon
@imgly/ShapesShapes Icon
@imgly/ShareShare Icon
@imgly/SidebarOpenSidebarOpen Icon
@imgly/SplitSplit Icon
@imgly/StickerSticker Icon
@imgly/StopStop Icon
@imgly/StraightenStraighten Icon
@imgly/StrokeDashStrokeDash Icon
@imgly/StrokeDottedStrokeDotted Icon
@imgly/StrokePositionCenterStrokePositionCenter Icon
@imgly/StrokePositionInsideStrokePositionInside Icon
@imgly/StrokePositionOutsideStrokePositionOutside Icon
@imgly/StrokeSolidStrokeSolid Icon
@imgly/StrokeWeightStrokeWeight Icon
@imgly/TemplateTemplate Icon
@imgly/TextText Icon
@imgly/TextAlignBottomTextAlignBottom Icon
@imgly/TextAlignCenterTextAlignCenter Icon
@imgly/TextAlignLeftTextAlignLeft Icon
@imgly/TextAlignMiddleTextAlignMiddle Icon
@imgly/TextAlignRightTextAlignRight Icon
@imgly/TextAlignTopTextAlignTop Icon
@imgly/TextAutoHeightTextAutoHeight Icon
@imgly/TextAutoSizeTextAutoSize Icon
@imgly/TextBoldTextBold Icon
@imgly/TextFixedSizeTextFixedSize Icon
@imgly/TextItalicTextItalic Icon
@imgly/TimelineTimeline Icon
@imgly/ToggleIconOffToggleIconOff Icon
@imgly/ToggleIconOnToggleIconOn Icon
@imgly/TransformSectionTransformSection Icon
@imgly/TrashBinTrashBin Icon
@imgly/TriangleDownTriangleDown Icon
@imgly/TriangleUpTriangleUp Icon
@imgly/TrimMediaTrimMedia Icon
@imgly/TypefaceTypeface Icon
@imgly/UndoUndo Icon
@imgly/UngroupUngroup Icon
@imgly/UploadUpload Icon
@imgly/VideoVideo Icon
@imgly/VideoCameraVideoCamera Icon
@imgly/VolumeVolume Icon
@imgly/VolumeMuteVolumeMute Icon
@imgly/ZoomInZoomIn Icon
@imgly/ZoomOutZoomOut Icon