Row Child icon
The Row Child 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 Row Child 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 { RowChild24Regular, RowChild24Filled } from "@fluentui/react-icons";
export function Example() {
return <RowChild24Regular aria-label="Row Child" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_row_child_24_regular.svg" width="24" height="24" alt="Row Child"> 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 5.25C3 4.00736 4.00736 3 5.25 3H18.75C19.9926 3 21 4.00736 21 5.25V8.25C21 9.49264 19.9926 10.5 18.75 10.5H7.5V14.75C7.5 15.7165 8.2835 16.5 9.25 16.5H12V15.75C12 14.5074 13.0074 13.5 14.25 13.5H18.75C19.9926 13.5 21 14.5074 21 15.75V18.75C21 19.9926 19.9926 21 18.75 21H14.25C13.0074 21 12 19.9926 12 18.75V18H9.25C7.45507 18 6 16.5449 6 14.75V10.5H5.25C4.00736 10.5 3 9.49264 3 8.25V5.25ZM18.75 9C19.1642 9 19.5 8.66421 19.5 8.25V5.25C19.5 4.83579 19.1642 4.5 18.75 4.5H5.25C4.83579 4.5 4.5 4.83579 4.5 5.25V8.25C4.5 8.66421 4.83579 9 5.25 9H18.75ZM13.5 15.75V18.75C13.5 19.1642 13.8358 19.5 14.25 19.5H18.75C19.1642 19.5 19.5 19.1642 19.5 18.75V15.75C19.5 15.3358 19.1642 15 18.75 15H14.25C13.8358 15 13.5 15.3358 13.5 15.75Z" 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/row_child_24_regular.svg";Details
| Name | Row Child |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_row_child_24_regular.svg |
| Filled file | ic_fluent_row_child_24_filled.svg |
| React components | RowChild24Regular, RowChild24Filled |
| License | MIT (© Microsoft Corporation) |