Border Outside Thick icon

Used in styling content scenarios. Contains option variants. The Border Outside 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.

Regular (outlined)

SVG

Filled

SVG

Use the Border Outside 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 { BorderOutsideThick24Regular, BorderOutsideThick24Filled } from "@fluentui/react-icons";

export function Example() {
  return <BorderOutsideThick24Regular aria-label="Border Outside Thick" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_border_outside_thick_24_regular.svg" width="24" height="24" alt="Border Outside 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 6C3 4.34315 4.34315 3 6 3H18C19.6569 3 21 4.34315 21 6V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V6ZM6 5C5.44772 5 5 5.44772 5 6V18C5 18.5523 5.44772 19 6 19H18C18.5523 19 19 18.5523 19 18V6C19 5.44772 18.5523 5 18 5H6Z" 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_outside_thick_24_regular.svg";

Details

NameBorder Outside Thick
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_border_outside_thick_24_regular.svg
Filled fileic_fluent_border_outside_thick_24_filled.svg
React componentsBorderOutsideThick24Regular, BorderOutsideThick24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

editstyle

Related icons