Cellular Data 4 icon
Used for device connection status. Contains level variants. The Cellular Data 4 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 Cellular Data 4 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 { CellularData424Regular, CellularData424Filled } from "@fluentui/react-icons";
export function Example() {
return <CellularData424Regular aria-label="Cellular Data 4" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_cellular_data_4_24_regular.svg" width="24" height="24" alt="Cellular Data 4"> 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="M3.75 17C4.1297 17 4.44349 17.2822 4.49315 17.6482L4.5 17.75V19.25C4.5 19.6642 4.16421 20 3.75 20C3.3703 20 3.05651 19.7178 3.00685 19.3518L3 19.25V17.75C3 17.3358 3.33579 17 3.75 17ZM7.75 14C8.1297 14 8.44349 14.2822 8.49315 14.6482L8.5 14.75V19.2487C8.5 19.6629 8.16421 19.9987 7.75 19.9987C7.3703 19.9987 7.05651 19.7166 7.00685 19.3505L7 19.2487V14.75C7 14.3358 7.33579 14 7.75 14Z" 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/cellular_data_4_24_regular.svg";Details
| Name | Cellular Data 4 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_cellular_data_4_24_regular.svg |
| Filled file | ic_fluent_cellular_data_4_24_filled.svg |
| React components | CellularData424Regular, CellularData424Filled |
| License | MIT (© Microsoft Corporation) |