odaptos_design_system 2.0.87 → 2.0.89

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.
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function HeartIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function HeartIconFilled({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -141,6 +141,8 @@ export { default as ContentPenWriteIcon } from './Miscellaneous/ContentPenWriteI
141
141
  export { default as CreditCardIcon } from './Miscellaneous/CreditCardIcon';
142
142
  export { default as DownloadIcon } from './Miscellaneous/DownloadIcon';
143
143
  export { default as EarthIcon } from './Miscellaneous/EarthIcon';
144
+ export { default as HeartIcon } from './Miscellaneous/HeartIcon';
145
+ export { default as HeartIconFilled } from './Miscellaneous/HeartIconFilled';
144
146
  export { default as FaceCenterIcon } from './Miscellaneous/FaceCenterIcon';
145
147
  export { default as FaceRecognitionIcon } from './Miscellaneous/FaceRecognitionIcon';
146
148
  export { default as FilesIcon } from './Miscellaneous/FilesIcon';
@@ -8697,6 +8697,70 @@ function EarthIcon({
8697
8697
  })))));
8698
8698
  }
8699
8699
 
8700
+ function HeartIcon({
8701
+ stroke,
8702
+ strokeWidth,
8703
+ fill,
8704
+ size = 'base',
8705
+ ...rest
8706
+ }) {
8707
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
8708
+ strokeWidth: strokeWidth ?? 0.1,
8709
+ stroke: stroke ? stroke : 'currentColor',
8710
+ sx: {
8711
+ height: getIconSize(size),
8712
+ width: getIconSize(size)
8713
+ }
8714
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
8715
+ xmlns: "http://www.w3.org/2000/svg",
8716
+ width: "16",
8717
+ height: "16",
8718
+ viewBox: "0 0 16 16",
8719
+ fill: "none"
8720
+ }, /*#__PURE__*/React__default.createElement("g", {
8721
+ "clip-path": "url(#clip0_5749_6812)"
8722
+ }, /*#__PURE__*/React__default.createElement("path", {
8723
+ "fill-rule": "evenodd",
8724
+ "clip-rule": "evenodd",
8725
+ d: "M7.65027 15.2006C5.88848 13.6596 2.98709 10.7913 1.32293 7.98472C0.123034 5.96169 -0.404403 3.95265 0.351335 2.42802C0.660044 1.80563 1.11138 1.26574 1.66754 0.853699C2.22369 0.441181 2.86935 0.168099 3.55042 0.0566466C4.23198 -0.0548057 4.9298 -0.00125065 5.58695 0.212487C6.24409 0.426707 6.84093 0.794837 7.32912 1.28648L8.00253 1.96533L8.67595 1.28648C9.16414 0.794837 9.76098 0.427189 10.4176 0.213452C11.0743 0.000196762 11.7717 -0.0533582 12.4527 0.0580941C13.1338 0.169546 13.779 0.442629 14.3351 0.854664C14.8908 1.2667 15.3421 1.80563 15.6509 2.42802C16.4028 3.94252 15.8768 5.95493 14.6793 7.98279C13.0165 10.798 10.1185 13.6789 8.35336 15.2026C8.15091 15.3777 7.85177 15.3768 7.65027 15.2006ZM8.00493 14.0692C9.71934 12.5427 12.2579 9.95998 13.7536 7.42745C14.2657 6.56044 14.6549 5.70163 14.8315 4.8959C14.9899 4.1717 14.9765 3.49575 14.6879 2.9134C14.4553 2.44539 14.1159 2.03963 13.6971 1.7294C13.2788 1.41916 12.793 1.21363 12.2804 1.12968C11.7678 1.04573 11.2423 1.08625 10.7484 1.24692C10.254 1.40758 9.80453 1.68453 9.43695 2.05459L8.38304 3.11652C8.17292 3.32833 7.83215 3.32833 7.62203 3.11652L6.56763 2.05459C6.20053 1.68404 5.75063 1.40662 5.25622 1.24595C4.76133 1.08481 4.23628 1.04476 3.7232 1.12823C3.21012 1.21218 2.72433 1.41772 2.30554 1.72843C1.88674 2.03866 1.54693 2.44491 1.31479 2.9134C1.02427 3.49961 1.00991 4.177 1.16882 4.90169C1.34495 5.70646 1.73454 6.56334 2.24714 7.42745C3.74618 9.95564 6.29099 12.5297 8.00493 14.0692Z",
8726
+ fill: fill
8727
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
8728
+ id: "clip0_5749_6812"
8729
+ }, /*#__PURE__*/React__default.createElement("rect", {
8730
+ width: "16",
8731
+ height: "16",
8732
+ fill: "white"
8733
+ })))));
8734
+ }
8735
+
8736
+ function HeartIconFilled({
8737
+ stroke,
8738
+ strokeWidth,
8739
+ fill,
8740
+ size = 'base',
8741
+ ...rest
8742
+ }) {
8743
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
8744
+ strokeWidth: strokeWidth ?? 0.1,
8745
+ stroke: stroke ? stroke : 'currentColor',
8746
+ sx: {
8747
+ height: getIconSize(size),
8748
+ width: getIconSize(size)
8749
+ }
8750
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
8751
+ xmlns: "http://www.w3.org/2000/svg",
8752
+ width: "24",
8753
+ height: "24",
8754
+ viewBox: "0 0 24 24",
8755
+ fill: "none"
8756
+ }, /*#__PURE__*/React__default.createElement("path", {
8757
+ "fill-rule": "evenodd",
8758
+ "clip-rule": "evenodd",
8759
+ d: "M11.4754 22.801C8.83271 20.4894 4.48063 16.1869 1.9844 11.9771C0.184552 8.94253 -0.606605 5.92898 0.527003 3.64204C0.990067 2.70844 1.66707 1.8986 2.50131 1.28055C3.33554 0.661772 4.30402 0.252148 5.32563 0.0849699C6.34796 -0.0822085 7.3947 -0.00187597 8.38042 0.31873C9.36613 0.64006 10.2614 1.19226 10.9937 1.92972L12.0038 2.94799L13.0139 1.92972C13.7462 1.19226 14.6415 0.640784 15.6265 0.320178C16.6115 0.000295132 17.6575 -0.0800374 18.6791 0.0871411C19.7007 0.25432 20.6685 0.663943 21.5027 1.282C22.3362 1.90005 23.0132 2.70844 23.4763 3.64204C24.6042 5.91378 23.8152 8.9324 22.0189 11.9742C19.5248 16.1971 15.1778 20.5184 12.53 22.8039C12.2264 23.0666 11.7777 23.0651 11.4754 22.801Z",
8760
+ fill: fill
8761
+ })));
8762
+ }
8763
+
8700
8764
  function FaceCenterIcon({
8701
8765
  stroke,
8702
8766
  strokeWidth,
@@ -13250,7 +13314,7 @@ const LogoSlider = ({
13250
13314
  })));
13251
13315
  };
13252
13316
 
13253
- var css_248z$y = ".Modal-modules_modal__wWkXE .Modal-modules_modal_content__xou6n{align-items:space-between;background:#fff;background:var(--Color-Neutral-Basics-White,#fff);border:none;border-radius:.25rem;box-shadow:0 4px 12px 6px rgba(0,0,0,.08),0 4px 4px 0 rgba(0,0,0,.15);display:flex;flex-direction:column;gap:1rem;height:100vh;left:50%;padding:1rem;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1301}.Modal-modules_modal__wWkXE .Modal-modules_modal_content__xou6n .Modal-modules_modal_header__FtF7q{align-items:center;display:flex;gap:.5rem;justify-content:space-between;width:100%}.Modal-modules_modal__wWkXE .Modal-modules_modal_content__xou6n .Modal-modules_modal_buttons_container__BVSR2{display:flex;gap:.5rem;justify-content:flex-end;width:100%}.Modal-modules_modal_overlay__20aVL .Modal-modules_modal_content__xou6n{align-items:space-between;background:#fff;border:none;display:flex;flex-direction:column;gap:.5rem;height:auto;left:50%;padding:1rem;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1301}.Modal-modules_modal_overlay__20aVL .Modal-modules_modal_content__xou6n .Modal-modules_modal_header__FtF7q{align-items:center;display:flex;gap:.5rem;justify-content:space-between;width:100%}.Modal-modules_modal_overlay__20aVL .Modal-modules_modal_content__xou6n .Modal-modules_modal_buttons_container__BVSR2{display:flex;gap:.5rem;justify-content:flex-end;margin-top:.5rem;width:100%}";
13317
+ var css_248z$y = ".Modal-modules_modal__wWkXE .Modal-modules_modal_content__xou6n{align-items:space-between;background:#fff;background:var(--Color-Neutral-Basics-White,#fff);border:none;border-radius:.25rem;box-shadow:0 4px 12px 6px rgba(0,0,0,.08),0 4px 4px 0 rgba(0,0,0,.15);display:flex;flex-direction:column;gap:1rem;height:100vh;left:50%;padding:1rem;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1301}.Modal-modules_modal__wWkXE .Modal-modules_modal_content__xou6n .Modal-modules_modal_header__FtF7q{align-items:center;display:flex;gap:.5rem;justify-content:space-between;width:100%}.Modal-modules_modal__wWkXE .Modal-modules_modal_content__xou6n .Modal-modules_modal_buttons_container__BVSR2{display:flex;gap:.5rem;justify-content:flex-end;width:100%}.Modal-modules_modal_overlay__20aVL .Modal-modules_modal_content__xou6n{align-items:space-between;background:#fff;border:none;border-radius:.25rem;display:flex;flex-direction:column;gap:.5rem;height:auto;left:50%;padding:1rem;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1301}.Modal-modules_modal_overlay__20aVL .Modal-modules_modal_content__xou6n .Modal-modules_modal_header__FtF7q{align-items:center;display:flex;gap:.5rem;justify-content:space-between;width:100%}.Modal-modules_modal_overlay__20aVL .Modal-modules_modal_content__xou6n .Modal-modules_modal_buttons_container__BVSR2{display:flex;gap:.5rem;justify-content:flex-end;margin-top:.5rem;width:100%}";
13254
13318
  var styles$y = {"modal":"Modal-modules_modal__wWkXE","modal_content":"Modal-modules_modal_content__xou6n","modal_header":"Modal-modules_modal_header__FtF7q","modal_buttons_container":"Modal-modules_modal_buttons_container__BVSR2","modal_overlay":"Modal-modules_modal_overlay__20aVL"};
13255
13319
  styleInject(css_248z$y);
13256
13320
 
@@ -17567,6 +17631,8 @@ exports.GroupIcon = GoogleIcon$1;
17567
17631
  exports.HangUpIcon = HangUpIcon;
17568
17632
  exports.HappyMen = HappyMen;
17569
17633
  exports.HardDriveIcon = HardDriveIcon;
17634
+ exports.HeartIcon = HeartIcon;
17635
+ exports.HeartIconFilled = HeartIconFilled;
17570
17636
  exports.HelpIcon = HelpIcon;
17571
17637
  exports.HelpIconAlt = HelpIconAlt;
17572
17638
  exports.IconButton = IconButton;