@xfers/design-system 4.2.0-dev.0bacf0ee1a → 4.2.0-dev.8c8af99edd

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,13 +40,13 @@ function RadioButton(_a) {
40
40
  react_1.default.createElement("div", { style: {
41
41
  display: 'flex',
42
42
  height: '100%',
43
- alignItems: 'center',
43
+ alignItems: 'center'
44
44
  } },
45
45
  react_1.default.createElement("div", { style: {
46
46
  width: '20px',
47
47
  height: '20px',
48
48
  lineHeight: '20px',
49
- marginRight: '11px',
49
+ marginRight: '11px'
50
50
  } },
51
51
  react_1.default.createElement("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
52
52
  react_1.default.createElement("circle", { className: "border", cx: "10", cy: "10", r: "9.5", stroke: "#E8E8E8" }),
@@ -55,6 +55,6 @@ function RadioButton(_a) {
55
55
  }
56
56
  exports.default = {
57
57
  Group: function (props) { return (react_1.default.createElement(radio_1.default.Group, __assign({ size: "large", onChange: props.onChange }, props))); },
58
- Button: RadioButton,
58
+ Button: RadioButton
59
59
  };
60
60
  //# sourceMappingURL=index.js.map
@@ -36,7 +36,7 @@ var baseStyle = (0, emotion_1.css)(templateObject_1 || (templateObject_1 = __mak
36
36
  var CustomTable = function (_a) {
37
37
  var className = _a.className, emptyText = _a.emptyText, restProps = __rest(_a, ["className", "emptyText"]);
38
38
  return (react_1.default.createElement(table_1.default, __assign({ className: (0, emotion_1.cx)(baseStyle, className), locale: {
39
- emptyText: emptyText,
39
+ emptyText: emptyText
40
40
  } }, restProps)));
41
41
  };
42
42
  exports.default = CustomTable;
@@ -5,5 +5,5 @@ type EmptyDataProps = {
5
5
  info?: React.ReactNode;
6
6
  svgUniqueId?: string;
7
7
  };
8
- declare const EmptyData: ({ title, subtitle, info, svgUniqueId, }: EmptyDataProps) => JSX.Element;
8
+ declare const EmptyData: ({ title, subtitle, info, svgUniqueId }: EmptyDataProps) => JSX.Element;
9
9
  export default EmptyData;