UNPKG

@nativescript-community/ui-svg

Version:

Adds support for SVGs in your NativeScript apps.

14 lines 556 B
import { CSSType, Property, View } from '@nativescript/core'; export const srcProperty = new Property({ name: 'src' }); export const stretchProperty = new Property({ name: 'stretch' }); // export const blendingModeProperty = new Property<SVGView, string>({ name: 'blendingMode' }); let SVGView = class SVGView extends View { }; SVGView = __decorate([ CSSType('SVGView') ], SVGView); export { SVGView }; srcProperty.register(SVGView); stretchProperty.register(SVGView); // blendingModeProperty.register(SVGView); //# sourceMappingURL=index.common.js.map