@teamturing/react-kit 2.57.0 → 2.58.1
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.
- package/dist/index.js +2 -0
- package/esm/core/StyledIcon/index.js +2 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1250,10 +1250,12 @@ var Grid$1 = Object.assign(Grid, {
|
|
|
1250
1250
|
const StyledIcon = /*#__PURE__*/React.forwardRef(({
|
|
1251
1251
|
icon: Icon,
|
|
1252
1252
|
sx,
|
|
1253
|
+
className,
|
|
1253
1254
|
...props
|
|
1254
1255
|
}, ref) => /*#__PURE__*/jsxRuntime.jsx(View, {
|
|
1255
1256
|
ref: ref,
|
|
1256
1257
|
...props,
|
|
1258
|
+
className: `trk-styled_icon__wrapper ${className}`,
|
|
1257
1259
|
color: props.color,
|
|
1258
1260
|
sx: {
|
|
1259
1261
|
'& svg': {
|
|
@@ -5,10 +5,12 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
5
5
|
const StyledIcon = /*#__PURE__*/forwardRef(({
|
|
6
6
|
icon: Icon,
|
|
7
7
|
sx,
|
|
8
|
+
className,
|
|
8
9
|
...props
|
|
9
10
|
}, ref) => /*#__PURE__*/jsx(View, {
|
|
10
11
|
ref: ref,
|
|
11
12
|
...props,
|
|
13
|
+
className: `trk-styled_icon__wrapper ${className}`,
|
|
12
14
|
color: props.color,
|
|
13
15
|
sx: {
|
|
14
16
|
'& svg': {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.58.1",
|
|
4
4
|
"description": "React components, hooks for create teamturing web application",
|
|
5
5
|
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
6
|
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@floating-ui/react": "^0.27.16",
|
|
57
57
|
"@primer/behaviors": "^1.3.6",
|
|
58
|
-
"@teamturing/icons": "^1.
|
|
58
|
+
"@teamturing/icons": "^1.60.0",
|
|
59
59
|
"@teamturing/token-studio": "^1.16.2",
|
|
60
60
|
"@teamturing/utils": "^1.5.0",
|
|
61
61
|
"framer-motion": "^10.16.4",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"react-textarea-autosize": "^8.5.3",
|
|
67
67
|
"styled-system": "^5.1.5"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "569dccd464b45e25d7572ab8c908b97428ea242e"
|
|
70
70
|
}
|