odaptos_design_system 2.0.314 → 2.0.315
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.cjs +24 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +192 -180
- package/dist/index.d.ts +192 -180
- package/dist/index.js +24 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -8687,6 +8687,29 @@ function PlayIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
8687
8687
|
})));
|
|
8688
8688
|
}
|
|
8689
8689
|
|
|
8690
|
+
//#endregion
|
|
8691
|
+
//#region src/DesignTokens/Icons/MediaControl/PlayFillIcon.tsx
|
|
8692
|
+
function PlayFillIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
8693
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
8694
|
+
strokeWidth: strokeWidth ?? 1.7,
|
|
8695
|
+
stroke: stroke ? stroke : "currentColor",
|
|
8696
|
+
sx: {
|
|
8697
|
+
height: getIconSize(size),
|
|
8698
|
+
width: getIconSize(size)
|
|
8699
|
+
},
|
|
8700
|
+
...rest
|
|
8701
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
8702
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8703
|
+
width: "24",
|
|
8704
|
+
height: "24",
|
|
8705
|
+
viewBox: "0 0 24 24",
|
|
8706
|
+
fill: "none"
|
|
8707
|
+
}, /* @__PURE__ */ react.default.createElement("path", {
|
|
8708
|
+
d: "M3.82752 1.01056C4.20982 1.00614 4.52096 1.08171 4.88904 1.26739C5.37573 1.51325 21.2119 10.0074 21.3861 10.116C21.7009 10.3191 22.0123 10.666 22.182 11.0037C22.2795 11.1977 22.3659 11.5076 22.3949 11.7625C22.4403 12.1622 22.3569 12.6477 22.182 12.9959C22.0123 13.3336 21.701 13.6805 21.3861 13.8836C21.2113 13.9938 5.29576 22.529 4.87147 22.7401C4.46899 22.9403 4.16465 23.006 3.73475 22.9842C3.24966 22.9595 2.92542 22.8477 2.50916 22.5613C2.3555 22.4556 2.10439 22.1981 1.98963 22.0291C1.78344 21.7253 1.66186 21.4078 1.60877 21.0359C1.57572 20.8044 1.57572 3.19511 1.60877 2.96368C1.68192 2.45172 1.89378 2.02047 2.24451 1.66974C2.554 1.3604 2.96352 1.13602 3.35975 1.05841C3.43213 1.04422 3.51284 1.02848 3.53943 1.02325C3.56583 1.01805 3.69555 1.0121 3.82752 1.01056Z",
|
|
8709
|
+
fill
|
|
8710
|
+
})));
|
|
8711
|
+
}
|
|
8712
|
+
|
|
8690
8713
|
//#endregion
|
|
8691
8714
|
//#region src/DesignTokens/Icons/MediaControl/PreviousIcon.tsx
|
|
8692
8715
|
function PreviousIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
@@ -75818,6 +75841,7 @@ exports.Partner9SVG = Partner9;
|
|
|
75818
75841
|
exports.PasswordField = PasswordField;
|
|
75819
75842
|
exports.PauseIcon = PauseIcon;
|
|
75820
75843
|
exports.PencilWriteIcon = PencilWriteIcon;
|
|
75844
|
+
exports.PlayFillIcon = PlayFillIcon;
|
|
75821
75845
|
exports.PlayIcon = PlayIcon;
|
|
75822
75846
|
exports.PlayStoreBadge = PlayStoreBadge;
|
|
75823
75847
|
exports.PointingMan = PointingMan;
|