import {containerless, bindable} from 'aurelia-framework'

@containerless
export class SvgRect {
  @bindable rect;
  
  constructor(){

  }
  
  attached(){

  }
}