mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
### What problem does this PR solve? Feat: Add the iteration Node #4242 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -205,6 +205,36 @@ const QWeatherSvg = () => (
|
||||
</svg>
|
||||
);
|
||||
|
||||
const SemicolonSvg = () => (
|
||||
<svg
|
||||
viewBox="0 0 1024 1024"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="200"
|
||||
height="200"
|
||||
>
|
||||
<path
|
||||
d="M506.88 249.059556a89.884444 89.884444 0 0 0 60.074667-21.845334 87.950222 87.950222 0 0 0 23.210666-61.44 79.189333 79.189333 0 0 0-83.285333-83.285333c-24.576 0-45.056 6.826667-60.074667 23.210667-16.384 15.018667-23.210667 35.498667-23.210666 60.074666 0 24.576 6.826667 45.056 23.210666 61.44 15.018667 13.653333 35.498667 21.845333 60.074667 21.845334zM414.037333 967.224889a262.030222 262.030222 0 0 0 141.994667-88.746667c35.498667-46.421333 53.248-99.669333 53.248-159.744 0-39.594667-9.557333-70.997333-27.306667-95.573333a89.543111 89.543111 0 0 0-75.093333-38.229333c-27.306667 0-47.786667 6.826667-62.805333 23.210666-17.749333 15.018667-25.941333 35.498667-25.941334 61.44 0 23.210667 8.192 43.690667 24.576 60.074667a79.416889 79.416889 0 0 0 58.709334 24.576 78.506667 78.506667 0 0 0 30.037333-5.461333c0 32.768-9.557333 62.805333-30.037333 91.477333a190.008889 190.008889 0 0 1-87.381334 60.074667v66.901333z"
|
||||
fill={currentColor}
|
||||
></path>
|
||||
</svg>
|
||||
);
|
||||
|
||||
const CommaSvg = () => (
|
||||
<svg
|
||||
viewBox="0 0 1024 1024"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="200"
|
||||
height="200"
|
||||
>
|
||||
<path
|
||||
fill={currentColor}
|
||||
d="M701.312 416.064C701.312 327.68 629.76 256 541.312 256c-88.32 0-160 71.68-160 160.064s71.68 160.064 160 160.064c10.368 0 20.352-1.216 30.144-3.072-27.136 78.592-88.32 99.392-166.4 120.32L434.688 736c228.288-40.576 269.184-268.48 266.688-266.496C707.328 452.672 701.312 434.88 701.312 416.064z"
|
||||
></path>
|
||||
</svg>
|
||||
);
|
||||
|
||||
export const ApiIcon = (props: Partial<IconComponentProps>) => (
|
||||
<Icon component={ApiSvg} {...props} />
|
||||
);
|
||||
@ -238,3 +268,11 @@ export const GitHubIcon = (props: Partial<IconComponentProps>) => (
|
||||
export const QWeatherIcon = (props: Partial<IconComponentProps>) => (
|
||||
<Icon component={QWeatherSvg} {...props} />
|
||||
);
|
||||
|
||||
export const SemicolonIcon = (props: Partial<IconComponentProps>) => (
|
||||
<Icon component={SemicolonSvg} {...props} />
|
||||
);
|
||||
|
||||
export const CommaIcon = (props: Partial<IconComponentProps>) => (
|
||||
<Icon component={CommaSvg} {...props} />
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user