constructor()

in src/lib/components/molecules/canvas-map/lib/styles/Fill.js [20:26]


  constructor(options) {
    this.color = options?.color || "#CCC"
    this.opacity = options?.opacity || 1
    this.pattern = options?.pattern || null

    this._getRgba = memoise(toRgba)
  }