@luscii-healthtech/web-ui 2.69.2 → 2.69.3
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/components/Icons/BluetoothIcon.d.ts +3 -0
- package/dist/components/Icons/index.d.ts +1 -0
- package/dist/web-ui.cjs.development.js +17 -0
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +17 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as AddIcon } from "./AddIcon";
|
|
2
2
|
export { default as AlertsIcon } from "./AlertsIcon";
|
|
3
3
|
export { default as BellIcon } from "./BellIcon";
|
|
4
|
+
export { default as BluetoothIcon } from "./BluetoothIcon";
|
|
4
5
|
export { default as ChartIcon } from "./ChartIcon";
|
|
5
6
|
export { default as ChartLineColoredIcon } from "./ChartLineColoredIcon";
|
|
6
7
|
export { default as ChatBoxIcon } from "./ChatBoxIcon";
|
|
@@ -726,6 +726,21 @@ var SvgBellIcon = function SvgBellIcon(props) {
|
|
|
726
726
|
|
|
727
727
|
var BellIcon = /*#__PURE__*/IconWrapper(SvgBellIcon);
|
|
728
728
|
|
|
729
|
+
var SvgBluetoothIcon = function SvgBluetoothIcon(props) {
|
|
730
|
+
return /*#__PURE__*/React__default.createElement("svg", _extends({
|
|
731
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
732
|
+
width: 24,
|
|
733
|
+
height: 24,
|
|
734
|
+
fill: "none",
|
|
735
|
+
viewBox: "0 0 24 24"
|
|
736
|
+
}, props), /*#__PURE__*/React__default.createElement("path", {
|
|
737
|
+
fill: "currentColor",
|
|
738
|
+
d: "m17 7-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17a.996.996 0 0 0 0-1.41L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42Zm-4-1.17 1.88 1.88L13 9.59V5.83Zm1.88 10.46L13 18.17v-3.76l1.88 1.88Z"
|
|
739
|
+
}));
|
|
740
|
+
};
|
|
741
|
+
|
|
742
|
+
var BluetoothIcon = /*#__PURE__*/IconWrapper(SvgBluetoothIcon);
|
|
743
|
+
|
|
729
744
|
var SvgChartIcon = function SvgChartIcon(props) {
|
|
730
745
|
return /*#__PURE__*/React__default.createElement("svg", _extends({
|
|
731
746
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1812,6 +1827,7 @@ var Icons = {
|
|
|
1812
1827
|
AddIcon: AddIcon,
|
|
1813
1828
|
AlertsIcon: AlertsIcon,
|
|
1814
1829
|
BellIcon: BellIcon,
|
|
1830
|
+
BluetoothIcon: BluetoothIcon,
|
|
1815
1831
|
ChartIcon: ChartIcon,
|
|
1816
1832
|
ChartLineColoredIcon: ChartLineColoredIcon,
|
|
1817
1833
|
ChatBoxIcon: ChatBoxIcon,
|
|
@@ -8814,6 +8830,7 @@ exports.AlertsIcon = AlertsIcon;
|
|
|
8814
8830
|
exports.Avatar = Avatar;
|
|
8815
8831
|
exports.Badge = Badge;
|
|
8816
8832
|
exports.BellIcon = BellIcon;
|
|
8833
|
+
exports.BluetoothIcon = BluetoothIcon;
|
|
8817
8834
|
exports.Breadcrumbs = Breadcrumbs;
|
|
8818
8835
|
exports.CRUDPage = CRUDPage;
|
|
8819
8836
|
exports.Card = Card;
|