ronds-metadata 1.3.58 → 1.3.60

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "public": true,
3
3
  "name": "ronds-metadata",
4
- "version": "1.3.58",
4
+ "version": "1.3.60",
5
5
  "scripts": {
6
6
  "start": "dumi dev",
7
7
  "docs:build": "dumi build",
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- interface IIconButtonProps {
3
- icon: React.ReactNode;
4
- text: string;
5
- onClick: () => void;
6
- }
7
- declare const IconButton: (props: IIconButtonProps) => import("react").JSX.Element;
8
- export default IconButton;
@@ -1,16 +0,0 @@
1
- import "antd/es/button/style";
2
- import _Button from "antd/es/button";
3
- import React from "react";
4
- import { tr } from '../../../../framework/locale';
5
- var IconButton = function IconButton(props) {
6
- var icon = props.icon,
7
- text = props.text,
8
- onClick = props.onClick;
9
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_Button, {
10
- className: "ml-2",
11
- type: "link",
12
- icon: icon,
13
- onClick: onClick
14
- }, tr(text)));
15
- };
16
- export default IconButton;