@gssfed/vital-ui-kit-react
Version:
Vital UI Kit for React!
29 lines (21 loc) • 938 B
JavaScript
var _templateObject = _taggedTemplateLiteral([''], ['']);
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
/**
*
* Copyright © 2018 Galaxy Software Services https://github.com/GSS-FED/vital-ui-kit-react
* MIT license
*/
import * as React from 'react';
import styled from 'styled-components';
var StyledCheckboxGroup = styled.div(_templateObject);
var CheckboxGroup = function CheckboxGroup(_ref) {
var children = _ref.children,
props = _objectWithoutProperties(_ref, ['children']);
return React.createElement(
StyledCheckboxGroup,
props,
children
);
};
export default CheckboxGroup;