intentful
Version:
Create Custom Skills with less headache
22 lines (21 loc) • 674 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RadialGradient = void 0;
const gradient_1 = require("./gradient");
class RadialGradient extends gradient_1.Gradient {
constructor(props) {
super('radial', props);
}
componentSpecificModel() {
return {
colorRange: this.props.colorRange,
description: this.props.description,
inputRange: this.props.inputRange,
units: this.props.units,
centerX: this.props.centerX,
centerY: this.props.centerY,
radius: this.props.radius
};
}
}
exports.RadialGradient = RadialGradient;