@ursignalstack/design-system 1.0.18 → 1.0.19
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.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +22 -0
- package/dist/index.mjs +21 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -78,4 +78,6 @@ declare function PoweredByStripe(props: SVGProps<SVGSVGElement>): react_jsx_runt
|
|
|
78
78
|
|
|
79
79
|
declare function CreditCard(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
declare const UtilityBolt: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
|
|
83
|
+
export { ApplePay, ArrowDown, BHSymbol, Camera, Coin, CreditCard, GOCSymbol, IPSymbol, NASymbol, PPWSymbol, PoweredByStripe, SymbolV1, SymbolV10, SymbolV2, SymbolV3, SymbolV4, SymbolV5, SymbolV6, SymbolV7, SymbolV8, SymbolV9, SymbolVX, UtilitiesText, UtilityBolt, WelcomeIP };
|
package/dist/index.d.ts
CHANGED
|
@@ -78,4 +78,6 @@ declare function PoweredByStripe(props: SVGProps<SVGSVGElement>): react_jsx_runt
|
|
|
78
78
|
|
|
79
79
|
declare function CreditCard(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
declare const UtilityBolt: react.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
|
|
83
|
+
export { ApplePay, ArrowDown, BHSymbol, Camera, Coin, CreditCard, GOCSymbol, IPSymbol, NASymbol, PPWSymbol, PoweredByStripe, SymbolV1, SymbolV10, SymbolV2, SymbolV3, SymbolV4, SymbolV5, SymbolV6, SymbolV7, SymbolV8, SymbolV9, SymbolVX, UtilitiesText, UtilityBolt, WelcomeIP };
|
package/dist/index.js
CHANGED
|
@@ -43,6 +43,7 @@ __export(index_exports, {
|
|
|
43
43
|
SymbolV9: () => SymbolV9,
|
|
44
44
|
SymbolVX: () => SymbolVX,
|
|
45
45
|
UtilitiesText: () => UtilitiesText,
|
|
46
|
+
UtilityBolt: () => UtilityBolt,
|
|
46
47
|
WelcomeIP: () => WelcomeIP
|
|
47
48
|
});
|
|
48
49
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -1311,6 +1312,26 @@ function CreditCard(props) {
|
|
|
1311
1312
|
}
|
|
1312
1313
|
);
|
|
1313
1314
|
}
|
|
1315
|
+
|
|
1316
|
+
// src/Icons/Shared/UtilityBolt.tsx
|
|
1317
|
+
var import_react3 = require("react");
|
|
1318
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1319
|
+
var UtilityBolt = (0, import_react3.forwardRef)(
|
|
1320
|
+
({ className, ...props }, ref) => {
|
|
1321
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1322
|
+
"svg",
|
|
1323
|
+
{
|
|
1324
|
+
ref,
|
|
1325
|
+
viewBox: "0 0 24 24",
|
|
1326
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1327
|
+
className,
|
|
1328
|
+
...props,
|
|
1329
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M13 2L3 14h7l-1 8 12-14h-7l-1-6z", fill: "currentColor" })
|
|
1330
|
+
}
|
|
1331
|
+
);
|
|
1332
|
+
}
|
|
1333
|
+
);
|
|
1334
|
+
UtilityBolt.displayName = "UtilityBolt";
|
|
1314
1335
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1315
1336
|
0 && (module.exports = {
|
|
1316
1337
|
ApplePay,
|
|
@@ -1336,5 +1357,6 @@ function CreditCard(props) {
|
|
|
1336
1357
|
SymbolV9,
|
|
1337
1358
|
SymbolVX,
|
|
1338
1359
|
UtilitiesText,
|
|
1360
|
+
UtilityBolt,
|
|
1339
1361
|
WelcomeIP
|
|
1340
1362
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1262,6 +1262,26 @@ function CreditCard(props) {
|
|
|
1262
1262
|
}
|
|
1263
1263
|
);
|
|
1264
1264
|
}
|
|
1265
|
+
|
|
1266
|
+
// src/Icons/Shared/UtilityBolt.tsx
|
|
1267
|
+
import { forwardRef as forwardRef3 } from "react";
|
|
1268
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1269
|
+
var UtilityBolt = forwardRef3(
|
|
1270
|
+
({ className, ...props }, ref) => {
|
|
1271
|
+
return /* @__PURE__ */ jsx25(
|
|
1272
|
+
"svg",
|
|
1273
|
+
{
|
|
1274
|
+
ref,
|
|
1275
|
+
viewBox: "0 0 24 24",
|
|
1276
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1277
|
+
className,
|
|
1278
|
+
...props,
|
|
1279
|
+
children: /* @__PURE__ */ jsx25("path", { d: "M13 2L3 14h7l-1 8 12-14h-7l-1-6z", fill: "currentColor" })
|
|
1280
|
+
}
|
|
1281
|
+
);
|
|
1282
|
+
}
|
|
1283
|
+
);
|
|
1284
|
+
UtilityBolt.displayName = "UtilityBolt";
|
|
1265
1285
|
export {
|
|
1266
1286
|
ApplePay,
|
|
1267
1287
|
ArrowDown,
|
|
@@ -1286,5 +1306,6 @@ export {
|
|
|
1286
1306
|
SymbolV9,
|
|
1287
1307
|
SymbolVX,
|
|
1288
1308
|
UtilitiesText,
|
|
1309
|
+
UtilityBolt,
|
|
1289
1310
|
WelcomeIP
|
|
1290
1311
|
};
|