Skip to content

Commit a792301

Browse files
committed
fix(ResetButton): update reset icon SVG path for improved visual representation
1 parent 954f321 commit a792301

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

frontend/src/components/ui/ResetButton.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@ const ResetButton: React.FC<ResetButtonProps> = ({
1515
}) => {
1616
const resetIcon = (
1717
<svg className="w-5 h-5 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24">
18-
<path
19-
strokeLinecap="round"
20-
strokeLinejoin="round"
21-
strokeWidth={2}
22-
d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"
23-
/>
18+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
2419
</svg>
2520
);
2621

0 commit comments

Comments
 (0)