mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-28 12:56:34 -04:00
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
name: 'checkboxgroup',
|
|
template: require('../../templates/components/checkboxgroup.tpl'),
|
|
style: require('../../styles/clay/components/checkboxgroup.scss'),
|
|
manipulator: 'checkboxgroup',
|
|
defaults: {
|
|
label: '',
|
|
options: [],
|
|
description: '',
|
|
attributes: {}
|
|
}
|
|
};
|