sud-ui 0.7.0 → 1.1.2

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  </a>
5
5
  </p>
6
6
 
7
- # Soon UI Design Library [![npm version](https://img.shields.io/badge/npm-0.7.0-blue)](https://www.npmjs.com/package/sud-ui)
7
+ # Soon UI Design Library [![npm version](https://img.shields.io/badge/npm-1.1.2-blue)](https://www.npmjs.com/package/sud-ui)
8
8
 
9
9
  **Soon UI Design (SUD)** is a React UI library that helps you quickly build responsive and polished interfaces using reusable components and customizable design tokens.
10
10
 
@@ -54,7 +54,7 @@ export default function App() {
54
54
  borderWeight={2}
55
55
  borderColor="red"
56
56
  style={{
57
- width: "100%"
57
+ width: "100%",
58
58
  }}
59
59
  >
60
60
  <div className="flex gap-10">
@@ -120,18 +120,18 @@ const customTheme = {
120
120
  7: "#007abf",
121
121
  8: "#005f99",
122
122
  9: "#004473",
123
- 10: "#00294d"
124
- }
123
+ 10: "#00294d",
124
+ },
125
125
  },
126
126
  components: {
127
127
  button: {
128
128
  primary: {
129
129
  bg: "ocean-6",
130
130
  txt: "white-10",
131
- border: "ocean-7"
132
- }
133
- }
134
- }
131
+ border: "ocean-7",
132
+ },
133
+ },
134
+ },
135
135
  };
136
136
 
137
137
  export default function App() {