react-restyle-components 0.1.72 → 0.1.73

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/lib/global.css CHANGED
@@ -1044,6 +1044,10 @@ video {
1044
1044
  font-family: Nunito Sans Regular;
1045
1045
  }
1046
1046
 
1047
+ .text-3md {
1048
+ font-size: 20px;
1049
+ }
1050
+
1047
1051
  .text-3xs {
1048
1052
  font-size: 12px;
1049
1053
  }
@@ -14,5 +14,5 @@ export const Tabs = ({ options, onSelect }) => {
14
14
  color: item.title == selected ? '#ffffff' : '#000000',
15
15
  size: 24,
16
16
  } }),
17
- item.title)))))));
17
+ React.createElement("span", { className: "text-3md" }, item.title))))))));
18
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-restyle-components",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "private": false,
5
5
  "description": "Easy use restyle components",
6
6
  "main": "./lib/index.js",