packages/ui/src/lib/symbol/symbol.interface.ts
A Symbol is specified with a unique name and an optional string content.
Properties |
| content |
content:
|
Type : string
|
| Optional |
|
Text content. If nothing is set, the symbol is expected to have e.g. valid font glyph name. |
| name |
name:
|
Type : string
|
|
The name under which the symbol is accessible. |
| path |
path:
|
Type : string
|
| Optional |
|
Path content |
export interface Symbol {
/** The name under which the symbol is accessible. */
name: string;
/** Text content. If nothing is set, the symbol is expected to have e.g. valid font glyph name. */
content?: string;
/** Path content */
path?: string;
}