odaptos_design_system 1.4.74 → 1.4.75

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 DashedArrow({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -138,5 +138,6 @@ export { default as AlarmBellStatusIcon } from './Notifications/AlarmBellStatusI
138
138
  export { default as ConversationIdleIcon } from './Notifications/ConversationIdleIcon';
139
139
  export { default as ConversationStatusIcon } from './Notifications/ConversationStatusIcon';
140
140
  export { default as NotifAlertIcon } from './Notifications/NotifAlertIcon';
141
+ export { default as DashedArrow } from './Other/DashedArrowSvg';
141
142
  export { default as ProjectHoverSvg } from './Other/ProjectHoverSvg';
142
143
  export { default as ProjectSvg } from './Other/ProjectSvg';
@@ -6617,6 +6617,30 @@ function NotifAlertIcon({
6617
6617
  })));
6618
6618
  }
6619
6619
 
6620
+ function DashedArrow({
6621
+ stroke,
6622
+ strokeWidth,
6623
+ fill,
6624
+ size = 'base',
6625
+ ...rest
6626
+ }) {
6627
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
6628
+ strokeWidth: strokeWidth ?? 0.1,
6629
+ stroke: stroke ? stroke : 'currentColor',
6630
+ width: "100%",
6631
+ height: "100%"
6632
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
6633
+ xmlns: "http://www.w3.org/2000/svg",
6634
+ width: "16",
6635
+ height: "68",
6636
+ viewBox: "0 0 16 68",
6637
+ fill: "none"
6638
+ }, /*#__PURE__*/React__default.createElement("path", {
6639
+ d: "M8.70711 0.792893C8.31658 0.402369 7.68342 0.402369 7.29289 0.792893L0.928932 7.15685C0.538408 7.54738 0.538408 8.18054 0.928932 8.57107C1.31946 8.96159 1.95262 8.96159 2.34315 8.57107L8 2.91421L13.6569 8.57107C14.0474 8.96159 14.6805 8.96159 15.0711 8.57107C15.4616 8.18054 15.4616 7.54738 15.0711 7.15685L8.70711 0.792893ZM7 1.5V3.57812H9V1.5H7ZM7 7.73438V11.8906H9V7.73438H7ZM7 16.0469V20.2031H9V16.0469H7ZM7 24.3594V28.5156H9V24.3594H7ZM7 32.6719V36.8281H9V32.6719H7ZM7 40.9844V45.1406H9V40.9844H7ZM7 49.2969V53.4531H9V49.2969H7ZM7 57.6094V61.7656H9V57.6094H7ZM7 65.9219V68H9V65.9219H7Z",
6640
+ fill: fill
6641
+ })));
6642
+ }
6643
+
6620
6644
  function ProjectSvg({
6621
6645
  stroke,
6622
6646
  strokeWidth,
@@ -9868,6 +9892,7 @@ exports.ConversationIdleIcon = ConversationIdleIcon;
9868
9892
  exports.ConversationStatusIcon = ConversationStatusIcon;
9869
9893
  exports.CopyPasteIcon = CopyPasteIcon;
9870
9894
  exports.CreditCardIcon = CreditCardIcon;
9895
+ exports.DashedArrow = DashedArrow;
9871
9896
  exports.DatePicker = DatePicker;
9872
9897
  exports.DownloadIcon = DownloadIcon;
9873
9898
  exports.DragDropIcon = DragDropIcon;