mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
* fix deps * Modularisation changes for Build with AI feature * New app loading UI for Build with AI feature & added animation for chat messages * Fix Error using AI feature * add missing services and logic * fix app gen * update submodules * EE frontend submodule updated * update submodules * EE frontend submodule updated post sync * Added Artifact Preview component to ee moddules list * Updated ai slice code * app gen changes * Resolved fix with AI bugs * Resolved AI Copilot bugs * app gen changes and query fixes * fix query generation bugs * update copilot * Resolved ChatMode dropdown & popover bug fix * Resolved PR suggestions & PreviewBox component in CE edition * Synced frontend/ee with main * Synced server/ee with main branch * Enhance submodule checkout process to handle branch existence and fallback to main (#13218) * Enhance submodule checkout process to handle branch existence and fallback to main * Improve submodule checkout process to handle branch validation and fallback to main * chore: Comment out Node.js setup, dependency installation, and build steps in cloud frontend workflow * refactor: Enhance submodule checkout process to include submodule name in logs * Update submodule checkout process to use the correct submodule name extraction method * fix: Update submodule checkout script to use correct submodule path variable * Improve submodule checkout process to correctly handle branch names and fallback to main * chore: Uncomment Node.js setup, dependency installation, and build steps in cloud frontend workflow * fix: Update branch checkout logic to use correct syntax and improve fallback handling * fix: Update git checkout command to use -B flag for branch creation * fix: Improve submodule checkout process to explicitly fetch branch ref before checkout * fix: Enhance submodule checkout process with improved branch validation and error handling * fix: Improve branch checkout logic by enhancing fetch command and validating branch existence * fix: Enhance manual Git checkout process with improved fetch and error handling * fix: Restore Node.js setup, dependency installation, and Netlify deployment steps in workflow * 🔄 chore: update submodules to latest main after auto-merge * Took sync of fix/appbuilder-02 in frontend/ee --------- Co-authored-by: Kartik Gupta <gupta.kartik18kg@gmail.com> Co-authored-by: Adish M <44204658+adishM98@users.noreply.github.com> Co-authored-by: adishM98 Bot <adish.madhu@gmail.com>
16 lines
1.2 KiB
JavaScript
16 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
|
|
const Retry = ({ fill = '#ACB2B9' }) => {
|
|
return (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width={12} height={13} viewBox="0 0 12 13" fill="none">
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M6.53571 4.37905C6.53571 4.47378 6.49809 4.56462 6.43111 4.63159L4.46682 6.59588C4.36468 6.69803 4.21106 6.72858 4.07761 6.6733C3.94416 6.61802 3.85714 6.4878 3.85714 6.34334V5.09334H3.14286C2.74837 5.09334 2.42857 5.41314 2.42857 5.80763V8.48619C2.42857 8.88069 2.74837 9.20048 3.14286 9.20048H8.85714C9.25164 9.20048 9.57143 8.88069 9.57143 8.48619V5.80763C9.57143 5.41314 9.25164 5.09334 8.85714 5.09334H8.32143C7.92694 5.09334 7.60714 4.77355 7.60714 4.37905C7.60714 3.98457 7.92694 3.66477 8.32143 3.66477H8.85714C10.0406 3.66477 11 4.62416 11 5.80763V8.48619C11 9.66969 10.0406 10.629 8.85714 10.629H3.14286C1.95939 10.629 1 9.66969 1 8.48619V5.80763C1 4.62416 1.95939 3.66478 3.14286 3.66478H3.85714V2.41477C3.85714 2.27032 3.94416 2.1401 4.07761 2.08481C4.21106 2.02954 4.36468 2.06009 4.46682 2.16223L6.43111 4.12652C6.49809 4.1935 6.53571 4.28433 6.53571 4.37905Z"
|
|
fill={fill}
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default Retry;
|