2016-03-09 18:53:27 -06:00

22 lines
277 B
JavaScript

"use strict";
import Color from "./color.js";
class Font {
constructor(family, size, fill = null, stroke = null) {
this.family = family;
this.size = `${size}px`;
this.fill = fill;
this.stroke = stroke;
}
}
export default Font;