diff --git a/src/components/Checkbox/Checkbox.vue b/src/components/Checkbox/Checkbox.vue new file mode 100644 index 0000000000..e905bb05b3 --- /dev/null +++ b/src/components/Checkbox/Checkbox.vue @@ -0,0 +1,169 @@ + + +## One checkbox with a hint + +```vue + +``` + + + + + + + diff --git a/src/components/Checkbox/index.js b/src/components/Checkbox/index.js new file mode 100644 index 0000000000..6d3fbbdb5d --- /dev/null +++ b/src/components/Checkbox/index.js @@ -0,0 +1,24 @@ +/** + * @copyright Copyright (c) 2019 Greta Doci + * + * @author Greta Doci + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ +import Checkbox from './Checkbox' + +export default Checkbox