ripcrypt/module/Apps/components/svgLoader.mjs
2025-07-20 14:14:46 -06:00

11 lines
337 B
JavaScript

import { RipCryptIcon } from "./Icon.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 RipCryptSVGLoader extends RipCryptIcon {
static elementName = `rc-svg`;
static _stylePath = `css/components/svg-loader.css`;
};