allaw-ui 1.0.32 → 1.0.33
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.
|
@@ -62,11 +62,11 @@ function BillingCount(_a) {
|
|
|
62
62
|
};
|
|
63
63
|
return React.createElement("button", { onClick: handleButtonClick, className: "billing-button-wrapper" },
|
|
64
64
|
React.createElement("i", { className: "allaw-icon-clock" }),
|
|
65
|
-
formatTime(time)
|
|
65
|
+
formatTime(time),
|
|
66
|
+
React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 43 48" },
|
|
67
|
+
React.createElement("path", { fill: "#25BEEB", d: "M12 39c-.549 0-1.095-.15-1.578-.447A3.008 3.008 0 0 1 9 36V12c0-1.041.54-2.007 1.422-2.553a3.014 3.014 0 0 1 2.919-.132l24 12a3.003 3.003 0 0 1 0 5.37l-24 12c-.42.21-.885.315-1.341.315z" })));
|
|
66
68
|
}
|
|
67
69
|
export default BillingCount;
|
|
68
70
|
/*
|
|
69
|
-
|
|
70
|
-
<path fill="#25BEEB" d="M12 39c-.549 0-1.095-.15-1.578-.447A3.008 3.008 0 0 1 9 36V12c0-1.041.54-2.007 1.422-2.553a3.014 3.014 0 0 1 2.919-.132l24 12a3.003 3.003 0 0 1 0 5.37l-24 12c-.42.21-.885.315-1.341.315z"/>
|
|
71
|
-
</svg>
|
|
71
|
+
|
|
72
72
|
*/
|