Video Recording icon
Used to represent general video content scenarios. The Video Recording icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 20 px
ic_fluent_video_recording_20_regular.svg
Video Recording icon in React
npm install @fluentui/react-icons
import { VideoRecording20Regular } from "@fluentui/react-icons";
export function Example() {
return <VideoRecording20Regular aria-label="Video Recording" />;
}Use the Video Recording icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { VideoRecording20Regular, VideoRecording20Filled } from "@fluentui/react-icons";
export function Example() {
return <VideoRecording20Regular aria-label="Video Recording" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_video_recording_20_regular.svg" width="20" height="20" alt="Video Recording"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M4.5 4A2.5 2.5 0 0 0 2 6.5v2.84q.47-.23 1-.3V6.5C3 5.67 3.67 5 4.5 5h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H11v1h.5a2.5 2.5 0 0 0 2.5-2.5v-1l2.4 1.8a1 1 0 0 0 1.6-.8v-7a1 1 0 0 0-1.6-.8L14 7.5v-1A2.5 2.5 0 0 0 11.5 4zM14 8.75l3-2.25v7l-3-2.25zM1 12.5A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4A2.5 2.5 0 0 1 7.5 19h-4A2.5 2.5 0 0 1 1 16.5zm4.02.03a.5.5 0 0 0-.45-.03l-.15.1-.1.17a1 1 0 0 0-.05.2v3.07a.5.5 0 0 0 .15.35q.06.07.16.12a.5.5 0 0 0 .32.01l.13-.06 2.3-1.57q.1-.06.16-.18a.5.5 0 0 0 0-.49 1 1 0 0 0-.17-.18z"/></svg>Details
| Name | Video Recording |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_video_recording_20_regular.svg |
| Filled file | ic_fluent_video_recording_20_filled.svg |
| React (Regular) | VideoRecording20Regular |
| React (Filled) | VideoRecording20Filled |
| License | MIT (© Microsoft Corporation) |