diff options
Diffstat (limited to 'lib/components/radius.js')
| -rw-r--r-- | lib/components/radius.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/components/radius.js b/lib/components/radius.js new file mode 100644 index 0000000..2aa29a8 --- /dev/null +++ b/lib/components/radius.js @@ -0,0 +1,9 @@ +import { Component } from '@serpentity/serpentity'; + +export default class Radius extends Component { + constructor(config) { + + super(config); + this.radius = this.radius || 5; + } +}; |