radio receiver icon
Free radio receiver SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons media 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">
<path d="M5 16v2"/>
<path d="M19 16v2"/>
<rect x="2" y="8" width="20" height="8" rx="2"/>
<line x1="18" y1="12" x2="18" y2="12.01"/>
<path d="M7 12h6"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/media/radio-receiver.svg"
width="24" height="24" alt="radio receiver icon">
<!-- …or paste the raw SVG from the SVG tab -->import { RadioReceiverIcon } from "@softicons/react";
export default function Example() {
return <RadioReceiverIcon size={24} strokeWidth={2} />;
}<script setup>
import { RadioReceiverIcon } from "@softicons/vue";
</script>
<template>
<RadioReceiverIcon :size="24" :stroke-width="2" />
</template>import { RadioReceiverIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [RadioReceiverIconComponent],
template: `<radio-receiver-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}