IIcon | @jupyterlab (original) (raw)

Interface IIcon

The simplest possible interface for defining a generic icon.

interface IIcon {
name: string;
svgstr: string;
}

Hierarchy (View Summary)

Index

Properties

name svgstr

Properties

Readonlyname

name: string

The name of the icon. By convention, the icon name will be namespaced as so:

"pkg-name:icon-name"

svgstr

svgstr: string

A string containing the raw contents of an svg file.