Skip to content

Commit 069c384

Browse files
Refactor ArrowRight SVG in DataFlowDiagram component for improved clarity and functionality. Adjusted path definitions for better visual representation of arrows.
1 parent d0b560b commit 069c384

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ecosystem/ai-tools/beacon/components/DataFlowDiagram.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ const ArrowBidirectional = ({ label }: { label?: string }) => (
217217
const ArrowRight = () => (
218218
<div className={styles.arrowHorizontal} aria-hidden>
219219
<svg width="40" height="24" viewBox="0 0 40 24" fill="none" className={styles.arrowSvg}>
220-
<path d="M4 12h28" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
221-
<path d="M32 12l4-4m-4 4l4 4" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
220+
<path d="M4 12h24" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
221+
<path d="M28 8l8 4-8 4" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
222222
</svg>
223223
</div>
224224
);

0 commit comments

Comments
 (0)