Video Bluetooth icon
Used to represent general video content scenarios. The Video Bluetooth 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 Bluetooth 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 { VideoBluetooth24Regular, VideoBluetooth24Filled } from "@fluentui/react-icons";
export function Example() {
return <VideoBluetooth24Regular aria-label="Video Bluetooth" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_video_bluetooth_24_regular.svg" width="24" height="24" alt="Video Bluetooth"> 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="M6.25002 4C4.45509 4 3.00002 5.45507 3.00002 7.25V8.0173C3.54592 7.93972 4.10572 8.12412 4.50002 8.52925V7.25C4.50002 6.2835 5.28352 5.5 6.25002 5.5H13.75C14.7165 5.5 15.5 6.2835 15.5 7.25V14.75C15.5 15.7165 14.7165 16.5 13.75 16.5H7.92707C7.96508 16.6275 7.98873 16.7599 7.99685 16.8949C8.02064 17.29 7.90972 17.679 7.68617 18H13.75C15.5449 18 17 16.5449 17 14.75V14.438L20.2575 16.6872C21.4183 17.4887 23.0018 16.6578 23.0018 15.2471V6.75204C23.0018 5.34137 21.4183 4.51044 20.2575 5.31197L17 7.56118V7.25C17 5.45507 15.5449 4 13.75 4H6.25002ZM17 9.38401L21.1098 6.54632C21.2756 6.43181 21.5018 6.55051 21.5018 6.75204V15.2471C21.5018 15.4486 21.2756 15.5673 21.1098 15.4528L17 12.6151V9.38401ZM3.79688 9.24093C3.58733 9.01422 3.26027 8.93907 2.97278 9.05158C2.68529 9.16409 2.49611 9.44128 2.49611 9.75V12.8248L1.73575 12.1785C1.42015 11.9103 0.946825 11.9487 0.678561 12.2643C0.410296 12.5799 0.448673 13.0532 0.764279 13.3215L2.49611 14.7935V15.2065L0.764279 16.6785C0.448673 16.9468 0.410296 17.4201 0.678561 17.7357C0.946825 18.0513 1.42015 18.0897 1.73575 17.8215L2.49611 17.1751V20.25C2.49611 20.5587 2.68529 20.8359 2.97278 20.9484C3.26027 21.0609 3.58733 20.9858 3.79688 20.7591L6.80079 17.5091C6.93947 17.359 7.01094 17.1589 6.99866 16.9549C6.98638 16.751 6.89143 16.5609 6.73575 16.4285L5.05511 15L6.73575 13.5715C6.89143 13.4391 6.98638 13.249 6.99866 13.0451C7.01094 12.8411 6.93947 12.641 6.80079 12.4909L3.79688 9.24093ZM5.16856 17.0651L3.99611 18.3336V16.0685L5.16856 17.0651ZM3.99611 11.6664L5.16856 12.9349L3.99611 13.9315V11.6664Z" 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_bluetooth_24_regular.svg";Details
| Name | Video Bluetooth |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_video_bluetooth_24_regular.svg |
| Filled file | ic_fluent_video_bluetooth_24_filled.svg |
| React components | VideoBluetooth24Regular, VideoBluetooth24Filled |
| License | MIT (© Microsoft Corporation) |