llmasaservice-ui 0.1.6 → 0.1.7
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 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/ChatPanel.tsx +2 -2
package/dist/index.js
CHANGED
|
@@ -199,7 +199,7 @@ var ChatPanel = ({
|
|
|
199
199
|
{
|
|
200
200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
201
201
|
viewBox: "0 0 24 24",
|
|
202
|
-
|
|
202
|
+
strokeWidth: "2",
|
|
203
203
|
stroke: "currentColor",
|
|
204
204
|
fill: "none",
|
|
205
205
|
strokeLinecap: "round",
|
|
@@ -214,7 +214,7 @@ var ChatPanel = ({
|
|
|
214
214
|
{
|
|
215
215
|
xmlns: "http://www.w3.org/2000/svg",
|
|
216
216
|
viewBox: "0 0 24 24",
|
|
217
|
-
|
|
217
|
+
strokeWidth: "1",
|
|
218
218
|
stroke: "currentColor",
|
|
219
219
|
fill: "currentColor",
|
|
220
220
|
className: "icon-svg-large"
|
package/dist/index.mjs
CHANGED
|
@@ -166,7 +166,7 @@ var ChatPanel = ({
|
|
|
166
166
|
{
|
|
167
167
|
xmlns: "http://www.w3.org/2000/svg",
|
|
168
168
|
viewBox: "0 0 24 24",
|
|
169
|
-
|
|
169
|
+
strokeWidth: "2",
|
|
170
170
|
stroke: "currentColor",
|
|
171
171
|
fill: "none",
|
|
172
172
|
strokeLinecap: "round",
|
|
@@ -181,7 +181,7 @@ var ChatPanel = ({
|
|
|
181
181
|
{
|
|
182
182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
183
183
|
viewBox: "0 0 24 24",
|
|
184
|
-
|
|
184
|
+
strokeWidth: "1",
|
|
185
185
|
stroke: "currentColor",
|
|
186
186
|
fill: "currentColor",
|
|
187
187
|
className: "icon-svg-large"
|
package/package.json
CHANGED
package/src/ChatPanel.tsx
CHANGED
|
@@ -205,7 +205,7 @@ const ChatPanel: React.FC<ChatPanelProps> = ({
|
|
|
205
205
|
<svg
|
|
206
206
|
xmlns="http://www.w3.org/2000/svg"
|
|
207
207
|
viewBox="0 0 24 24"
|
|
208
|
-
|
|
208
|
+
strokeWidth="2"
|
|
209
209
|
stroke="currentColor"
|
|
210
210
|
fill="none"
|
|
211
211
|
strokeLinecap="round"
|
|
@@ -220,7 +220,7 @@ const ChatPanel: React.FC<ChatPanelProps> = ({
|
|
|
220
220
|
<svg
|
|
221
221
|
xmlns="http://www.w3.org/2000/svg"
|
|
222
222
|
viewBox="0 0 24 24"
|
|
223
|
-
|
|
223
|
+
strokeWidth="1"
|
|
224
224
|
stroke="currentColor"
|
|
225
225
|
fill="currentColor"
|
|
226
226
|
className="icon-svg-large"
|