Cellular Data 2 icon
Used for device connection status. Contains level variants. The Cellular Data 2 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 2 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 { CellularData224Regular, CellularData224Filled } from "@fluentui/react-icons";
export function Example() {
return <CellularData224Regular aria-label="Cellular Data 2" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_cellular_data_2_24_regular.svg" width="24" height="24" alt="Cellular Data 2"> 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 17ZM11.75 11C12.1297 11 12.4435 11.2822 12.4932 11.6482L12.5 11.75V19.25C12.5 19.6642 12.1642 20 11.75 20C11.3703 20 11.0565 19.7178 11.0068 19.3518L11 19.25V11.75C11 11.3358 11.3358 11 11.75 11ZM15.75 8C16.1297 8 16.4435 8.28215 16.4932 8.64823L16.5 8.75V19.25C16.5 19.6642 16.1642 20 15.75 20C15.3703 20 15.0565 19.7178 15.0068 19.3518L15 19.25V8.75C15 8.33579 15.3358 8 15.75 8ZM7.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_2_24_regular.svg";Details
| Name | Cellular Data 2 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_cellular_data_2_24_regular.svg |
| Filled file | ic_fluent_cellular_data_2_24_filled.svg |
| React components | CellularData224Regular, CellularData224Filled |
| License | MIT (© Microsoft Corporation) |