11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
import { OFTSVGLoader } from "./SVGLoader.mjs";
|
|
|
|
/**
|
|
Attributes:
|
|
@property {string} name - The name of the icon, takes precedence over the path
|
|
@property {string} path - The path of the icon file
|
|
*/
|
|
export class OFTIcon extends OFTSVGLoader {
|
|
static elementName = `oft-icon`;
|
|
static _stylePath = `icon.css`;
|
|
};
|