Video Clip icon
Used to represent general video content scenarios. The Video Clip icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Video Clip 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 { VideoClip24Regular, VideoClip24Filled } from "@fluentui/react-icons";
export function Example() {
return <VideoClip24Regular aria-label="Video Clip" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_video_clip_24_regular.svg" width="24" height="24" alt="Video Clip"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 6.25C2 4.45507 3.45507 3 5.25 3H18.75C20.5449 3 22 4.45507 22 6.25V17.75C22 19.5449 20.5449 21 18.75 21H5.25C3.45507 21 2 19.5449 2 17.75V6.25ZM5.25 4.5C4.2835 4.5 3.5 5.2835 3.5 6.25V17.75C3.5 18.7165 4.2835 19.5 5.25 19.5H18.75C19.7165 19.5 20.5 18.7165 20.5 17.75V6.25C20.5 5.2835 19.7165 4.5 18.75 4.5H5.25ZM9 9.2507V14.7501C9 15.5107 9.81546 15.9929 10.4819 15.6263L15.4815 12.8766C16.1723 12.4967 16.1723 11.5041 15.4815 11.1242L10.4819 8.37448C9.81546 8.00794 9 8.4901 9 9.2507Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/video_clip_24_regular.svg";Details
| Name | Video Clip |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_video_clip_24_regular.svg |
| Filled file | ic_fluent_video_clip_24_filled.svg |
| React components | VideoClip24Regular, VideoClip24Filled |
| License | MIT (© Microsoft Corporation) |