Border Inside icon

Used in styling content scenarios. Contains option variants. The Border Inside 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 Inside 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 { BorderInside24Regular, BorderInside24Filled } from "@fluentui/react-icons";

export function Example() {
  return <BorderInside24Regular aria-label="Border Inside" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_border_inside_24_regular.svg" width="24" height="24" alt="Border Inside">

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="M13.25 4.5C13.6642 4.5 14 4.16421 14 3.75C14 3.33579 13.6642 3 13.25 3H10.75C10.3358 3 10 3.33579 10 3.75C10 4.16421 10.3358 4.5 10.75 4.5L13.25 4.5ZM3.75 10C4.16421 10 4.5 10.3358 4.5 10.75V13.25C4.5 13.6642 4.16421 14 3.75 14C3.33579 14 3 13.6642 3 13.25V10.75C3 10.3358 3.33579 10 3.75 10ZM20.25 10C19.8358 10 19.5 10.3358 19.5 10.75V13.25C19.5 13.6642 19.8358 14 20.25 14C20.6642 14 21 13.6642 21 13.25V10.75C21 10.3358 20.6642 10 20.25 10ZM14 20.25C14 20.6642 13.6642 21 13.25 21H10.75C10.3358 21 10 20.6642 10 20.25C10 19.8358 10.3358 19.5 10.75 19.5H13.25C13.6642 19.5 14 19.8358 14 20.25ZM6.25 3C6.66421 3 7 3.33579 7 3.75C7 4.16421 6.66421 4.5 6.25 4.5H5.75C5.05964 4.5 4.5 5.05964 4.5 5.75V6.25C4.5 6.66421 4.16421 7 3.75 7C3.33579 7 3 6.66421 3 6.25V5.75C3 4.23122 4.23122 3 5.75 3H6.25ZM17 3.75C17 3.33579 17.3358 3 17.75 3H18.25C19.7688 3 21 4.23122 21 5.75V6.25C21 6.66421 20.6642 7 20.25 7C19.8358 7 19.5 6.66421 19.5 6.25V5.75C19.5 5.05964 18.9404 4.5 18.25 4.5H17.75C17.3358 4.5 17 4.16421 17 3.75ZM6.25 21C6.66421 21 7 20.6642 7 20.25C7 19.8358 6.66421 19.5 6.25 19.5H5.75C5.05964 19.5 4.5 18.9404 4.5 18.25V17.75C4.5 17.3358 4.16421 17 3.75 17C3.33579 17 3 17.3358 3 17.75V18.25C3 19.7688 4.23122 21 5.75 21H6.25ZM17 20.25C17 20.6642 17.3358 21 17.75 21H18.25C19.7688 21 21 19.7688 21 18.25V17.75C21 17.3358 20.6642 17 20.25 17C19.8358 17 19.5 17.3358 19.5 17.75V18.25C19.5 18.9404 18.9404 19.5 18.25 19.5H17.75C17.3358 19.5 17 19.8358 17 20.25ZM12.75 6.25C12.75 5.83579 12.4142 5.5 12 5.5C11.5858 5.5 11.25 5.83579 11.25 6.25V11.25H6.25C5.83579 11.25 5.5 11.5858 5.5 12C5.5 12.4142 5.83579 12.75 6.25 12.75H11.25V17.75C11.25 18.1642 11.5858 18.5 12 18.5C12.4142 18.5 12.75 18.1642 12.75 17.75V12.75H17.75C18.1642 12.75 18.5 12.4142 18.5 12C18.5 11.5858 18.1642 11.25 17.75 11.25H12.75V6.25Z" 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_inside_24_regular.svg";

Details

NameBorder Inside
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_border_inside_24_regular.svg
Filled fileic_fluent_border_inside_24_filled.svg
React componentsBorderInside24Regular, BorderInside24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

editstyle

Related icons