odaptos_design_system 2.0.231 → 2.0.232

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 StarFilledIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -185,6 +185,7 @@ export { default as SendEmailIcon } from './Miscellaneous/SendEmailIcon';
185
185
  export { default as SendIcon } from './Miscellaneous/SendIcon';
186
186
  export { default as SmartBrainIcon } from './Miscellaneous/SmartBrainIcon';
187
187
  export { default as StarIcon } from './Miscellaneous/StarIcon';
188
+ export { default as StarFilledIcon } from './Miscellaneous/StarFilledIcon';
188
189
  export { default as TaskIcon } from './Miscellaneous/TaskIcon';
189
190
  export { default as TestDetailsIcon } from './Miscellaneous/TestDetailsIcon';
190
191
  export { default as TestIcon } from './Miscellaneous/TestIcon';
@@ -10776,6 +10776,40 @@ function StarIcon({
10776
10776
  })))));
10777
10777
  }
10778
10778
 
10779
+ function StarFilledIcon({
10780
+ stroke,
10781
+ strokeWidth,
10782
+ fill,
10783
+ size = 'base',
10784
+ ...rest
10785
+ }) {
10786
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
10787
+ strokeWidth: strokeWidth ?? 0,
10788
+ stroke: stroke ? stroke : 'none',
10789
+ sx: {
10790
+ height: getIconSize(size),
10791
+ width: getIconSize(size)
10792
+ }
10793
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
10794
+ xmlns: "http://www.w3.org/2000/svg",
10795
+ width: "20",
10796
+ height: "20",
10797
+ viewBox: "0 0 20 20",
10798
+ fill: "none"
10799
+ }, /*#__PURE__*/React__default.createElement("g", {
10800
+ "clip-path": "url(#clip0_5614_18230)"
10801
+ }, /*#__PURE__*/React__default.createElement("path", {
10802
+ d: "M9.72211 0.0280374C9.90921 -0.0088598 10.0565 -0.00927474 10.245 0.0264094C10.5275 0.0799083 10.819 0.256507 11.0134 0.492004C11.0937 0.589727 11.4244 1.23403 12.9488 4.26234C13.5587 5.4741 13.8007 5.93716 13.8253 5.93832C13.9729 5.9385 18.906 6.44311 19.0215 6.46985C19.1673 6.50605 19.2541 6.54561 19.411 6.64729C19.5326 6.72615 19.7176 6.91461 19.7859 7.02823C19.8816 7.1878 19.9634 7.40041 19.9639 7.49301C19.9641 7.51778 19.9733 7.5386 19.9843 7.5386C20.0222 7.53985 20.0052 7.81417 19.955 8.00745C19.8978 8.22751 19.8428 8.34304 19.7175 8.50886C19.6661 8.57635 18.6865 9.56033 17.5391 10.6968C16.3934 11.8316 15.4593 12.7705 15.459 12.7871C15.4787 12.8434 16.9853 18.3373 17.0073 18.4329C17.0366 18.5637 17.0351 18.8312 17.0048 18.9742C16.9235 19.3577 16.6423 19.7111 16.2819 19.8817C16.0096 20.0106 15.6064 20.0378 15.3378 19.9452C15.2719 19.9225 14.0452 19.3223 12.6121 18.6119C11.1837 17.9039 10.0076 17.324 9.99208 17.3202C9.98419 17.3202 8.83164 17.8883 7.43142 18.5826C6.03198 19.2766 4.84654 19.8626 4.79595 19.885C4.15929 20.1665 3.41177 19.903 3.09887 19.2867C2.97375 19.0403 2.92599 18.7104 2.97933 18.4565C2.99618 18.377 4.46069 13.0237 4.5276 12.7969C4.53004 12.7706 3.89577 12.1287 2.46297 10.7066C1.32348 9.57566 0.352231 8.60528 0.303203 8.54874C0.134629 8.3535 0.0325339 8.08931 0.00964951 7.81942C0.01095 7.82758 0.0127655 7.82278 0.0145285 7.80314C0.0187279 7.75637 0.0187394 7.6797 0.0145285 7.63302C0.0103411 7.58662 0.00639685 7.62512 0.00639685 7.71849C0.0063985 7.7507 0.00731152 7.77633 0.00802318 7.79419C0.000345329 7.67794 0.00640485 7.56105 0.0299787 7.44825C0.132003 6.96029 0.553779 6.54368 1.03912 6.45112C1.1233 6.43526 2.3165 6.3108 3.69248 6.17519L6.19622 5.92855L6.97767 4.37793C8.58576 1.18474 8.89207 0.586303 8.96993 0.492004C9.159 0.263055 9.45505 0.0806853 9.72211 0.0280374Z",
10803
+ fill: "#FFB800"
10804
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
10805
+ id: "clip0_5614_18230"
10806
+ }, /*#__PURE__*/React__default.createElement("rect", {
10807
+ width: "20",
10808
+ height: "20",
10809
+ fill: "white"
10810
+ })))));
10811
+ }
10812
+
10779
10813
  function TaskIcon({
10780
10814
  stroke,
10781
10815
  strokeWidth,
@@ -96905,6 +96939,7 @@ exports.SmartBrainIcon = SmartBrainIcon;
96905
96939
  exports.SortingIcon = SortingIcon;
96906
96940
  exports.SoundInputAnimation = SoundInputAnimation;
96907
96941
  exports.SquareText = SquareText;
96942
+ exports.StarFilledIcon = StarFilledIcon;
96908
96943
  exports.StarIcon = StarIcon;
96909
96944
  exports.StarRating = StarRating;
96910
96945
  exports.StopRecordIcon = StopRecordingIcon;