border-none-16-filled from Fluent UI System Icons by Microsoft Corporation · 16 Filled · MIT Free for personal and commercial use.

Name
border-none-16-filled
Set
Fluent UI System Icons
Style
16 Filled
Viewbox
16×16
License
MIT

5 other variants in Fluent UI System Icons

The same icon in other sets

Related icons in Fluent UI System Icons

Use the border none icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M5.012 2.659a.77.77 0 0 1-.652.871a.98.98 0 0 0-.83.83a.77.77 0 0 1-1.524-.22a2.52 2.52 0 0 1 2.135-2.134a.77.77 0 0 1 .871.653M3.53 11.623a.77.77 0 1 0-1.524.219a2.52 2.52 0 0 0 2.135 2.134a.77.77 0 0 0 .219-1.524a.98.98 0 0 1-.83-.83m9.794-.653c.42.06.713.45.652.872a2.525 2.525 0 0 1-2.134 2.134a.77.77 0 0 1-.22-1.524a.985.985 0 0 0 .83-.83a.77.77 0 0 1 .872-.652m-1.482-8.964a.77.77 0 0 0-.22 1.524a.98.98 0 0 1 .83.83a.77.77 0 1 0 1.524-.22a2.525 2.525 0 0 0-2.134-2.134M6.5 2.75A.75.75 0 0 1 7.25 2h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m-4.5 6a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0zm4.5 4.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m6-4.5a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0z"/></svg>

React

import type { SVGProps } from "react";

export function FluentBorderNone16Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M5.012 2.659a.77.77 0 0 1-.652.871a.98.98 0 0 0-.83.83a.77.77 0 0 1-1.524-.22a2.52 2.52 0 0 1 2.135-2.134a.77.77 0 0 1 .871.653M3.53 11.623a.77.77 0 1 0-1.524.219a2.52 2.52 0 0 0 2.135 2.134a.77.77 0 0 0 .219-1.524a.98.98 0 0 1-.83-.83m9.794-.653c.42.06.713.45.652.872a2.525 2.525 0 0 1-2.134 2.134a.77.77 0 0 1-.22-1.524a.985.985 0 0 0 .83-.83a.77.77 0 0 1 .872-.652m-1.482-8.964a.77.77 0 0 0-.22 1.524a.98.98 0 0 1 .83.83a.77.77 0 1 0 1.524-.22a2.525 2.525 0 0 0-2.134-2.134M6.5 2.75A.75.75 0 0 1 7.25 2h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m-4.5 6a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0zm4.5 4.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m6-4.5a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M5.012 2.659a.77.77 0 0 1-.652.871a.98.98 0 0 0-.83.83a.77.77 0 0 1-1.524-.22a2.52 2.52 0 0 1 2.135-2.134a.77.77 0 0 1 .871.653M3.53 11.623a.77.77 0 1 0-1.524.219a2.52 2.52 0 0 0 2.135 2.134a.77.77 0 0 0 .219-1.524a.98.98 0 0 1-.83-.83m9.794-.653c.42.06.713.45.652.872a2.525 2.525 0 0 1-2.134 2.134a.77.77 0 0 1-.22-1.524a.985.985 0 0 0 .83-.83a.77.77 0 0 1 .872-.652m-1.482-8.964a.77.77 0 0 0-.22 1.524a.98.98 0 0 1 .83.83a.77.77 0 1 0 1.524-.22a2.525 2.525 0 0 0-2.134-2.134M6.5 2.75A.75.75 0 0 1 7.25 2h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m-4.5 6a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0zm4.5 4.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m6-4.5a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0z"/></svg>
</template>

CSS

.icon-border-none-16-filled {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M5.012%202.659a.77.77%200%200%201-.652.871a.98.98%200%200%200-.83.83a.77.77%200%200%201-1.524-.22a2.52%202.52%200%200%201%202.135-2.134a.77.77%200%200%201%20.871.653M3.53%2011.623a.77.77%200%201%200-1.524.219a2.52%202.52%200%200%200%202.135%202.134a.77.77%200%200%200%20.219-1.524a.98.98%200%200%201-.83-.83m9.794-.653c.42.06.713.45.652.872a2.525%202.525%200%200%201-2.134%202.134a.77.77%200%200%201-.22-1.524a.985.985%200%200%200%20.83-.83a.77.77%200%200%201%20.872-.652m-1.482-8.964a.77.77%200%200%200-.22%201.524a.98.98%200%200%201%20.83.83a.77.77%200%201%200%201.524-.22a2.525%202.525%200%200%200-2.134-2.134M6.5%202.75A.75.75%200%200%201%207.25%202h1.5a.75.75%200%200%201%200%201.5h-1.5a.75.75%200%200%201-.75-.75m-4.5%206a.75.75%200%200%200%201.5%200v-1.5a.75.75%200%200%200-1.5%200zm4.5%204.5a.75.75%200%200%201%20.75-.75h1.5a.75.75%200%200%201%200%201.5h-1.5a.75.75%200%200%201-.75-.75m6-4.5a.75.75%200%200%200%201.5%200v-1.5a.75.75%200%200%200-1.5%200z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M5.012%202.659a.77.77%200%200%201-.652.871a.98.98%200%200%200-.83.83a.77.77%200%200%201-1.524-.22a2.52%202.52%200%200%201%202.135-2.134a.77.77%200%200%201%20.871.653M3.53%2011.623a.77.77%200%201%200-1.524.219a2.52%202.52%200%200%200%202.135%202.134a.77.77%200%200%200%20.219-1.524a.98.98%200%200%201-.83-.83m9.794-.653c.42.06.713.45.652.872a2.525%202.525%200%200%201-2.134%202.134a.77.77%200%200%201-.22-1.524a.985.985%200%200%200%20.83-.83a.77.77%200%200%201%20.872-.652m-1.482-8.964a.77.77%200%200%200-.22%201.524a.98.98%200%200%201%20.83.83a.77.77%200%201%200%201.524-.22a2.525%202.525%200%200%200-2.134-2.134M6.5%202.75A.75.75%200%200%201%207.25%202h1.5a.75.75%200%200%201%200%201.5h-1.5a.75.75%200%200%201-.75-.75m-4.5%206a.75.75%200%200%200%201.5%200v-1.5a.75.75%200%200%200-1.5%200zm4.5%204.5a.75.75%200%200%201%20.75-.75h1.5a.75.75%200%200%201%200%201.5h-1.5a.75.75%200%200%201-.75-.75m6-4.5a.75.75%200%200%200%201.5%200v-1.5a.75.75%200%200%200-1.5%200z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/border-none-16-filled.svg?color=%231a73e8&size=48