Border Top Bottom Thick icon
Used in styling content scenarios. Contains option variants. The Border Top Bottom Thick 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 Border Top Bottom Thick 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 { BorderTopBottomThick24Regular, BorderTopBottomThick24Filled } from "@fluentui/react-icons";
export function Example() {
return <BorderTopBottomThick24Regular aria-label="Border Top Bottom Thick" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_border_top_bottom_thick_24_regular.svg" width="24" height="24" alt="Border Top Bottom Thick"> 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 6.25C3 6.66421 3.33579 7 3.75 7C4.16421 7 4.5 6.66421 4.5 6.25V5.75C4.5 5.05964 5.05964 4.5 5.75 4.5H18.25C18.9404 4.5 19.5 5.05964 19.5 5.75V6.25C19.5 6.66421 19.8358 7 20.25 7C20.6642 7 21 6.66421 21 6.25V5.75C21 4.23122 19.7688 3 18.25 3H5.75C4.23122 3 3 4.23122 3 5.75V6.25ZM4.5 10.75C4.5 10.3358 4.16421 10 3.75 10C3.33579 10 3 10.3358 3 10.75V13.25C3 13.6642 3.33579 14 3.75 14C4.16421 14 4.5 13.6642 4.5 13.25V10.75ZM19.5 10.75C19.5 10.3358 19.8358 10 20.25 10C20.6642 10 21 10.3358 21 10.75V13.25C21 13.6642 20.6642 14 20.25 14C19.8358 14 19.5 13.6642 19.5 13.25V10.75ZM4 17C3.44772 17 3 17.4477 3 18C3 19.6569 4.34315 21 6 21H18C19.6569 21 21 19.6569 21 18C21 17.4477 20.5523 17 20 17C19.4477 17 19 17.4477 19 18C19 18.5523 18.5523 19 18 19H6C5.44772 19 5 18.5523 5 18C5 17.4477 4.55228 17 4 17Z" 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/border_top_bottom_thick_24_regular.svg";Details
| Name | Border Top Bottom Thick |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_border_top_bottom_thick_24_regular.svg |
| Filled file | ic_fluent_border_top_bottom_thick_24_filled.svg |
| React components | BorderTopBottomThick24Regular, BorderTopBottomThick24Filled |
| License | MIT (© Microsoft Corporation) |