softicons.dev

film icon

Free film 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">
  <rect x="2.5" y="3" width="19" height="18" rx="2.5"/>
  <line x1="7" y1="3" x2="7" y2="21"/>
  <line x1="17" y1="3" x2="17" y2="21"/>
  <line x1="2.5" y1="9" x2="21.5" y2="9"/>
  <line x1="2.5" y1="15" x2="21.5" y2="15"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/media/film.svg"
     width="24" height="24" alt="film icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { FilmIcon } from "@softicons/react";

export default function Example() {
  return <FilmIcon size={24} strokeWidth={2} />;
}
<script setup>
import { FilmIcon } from "@softicons/vue";
</script>

<template>
  <FilmIcon :size="24" :stroke-width="2" />
</template>
import { FilmIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [FilmIconComponent],
  template: `<film-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}