refresh icon
Free refresh SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons arrows set.
Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<polyline points="21 4 21 9.5 15.5 9.5"/>
<polyline points="3 20 3 14.5 8.5 14.5"/>
<path d="M19.6 9.5A8 8 0 0 0 6.3 6.3L3 9.5"/>
<path d="M4.4 14.5A8 8 0 0 0 17.7 17.7L21 14.5"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/arrows/refresh.svg"
width="24" height="24" alt="refresh icon">
<!-- …or paste the raw SVG from the SVG tab -->import { RefreshIcon } from "@softicons/react";
export default function Example() {
return <RefreshIcon size={24} strokeWidth={2} />;
}<script setup>
import { RefreshIcon } from "@softicons/vue";
</script>
<template>
<RefreshIcon :size="24" :stroke-width="2" />
</template>import { RefreshIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [RefreshIconComponent],
template: `<refresh-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}