format circle icon
format-circle-filled from Reicon by REICON · Filled · Newicons · MIT Free for personal and commercial use.
- Name
- format-circle-filled
- Set
- Reicon
- Style
- Filled
- Category
- Newicons
- Viewbox
- 24×24
- License
- MIT
1 other variant in Reicon
More newicons icons from Reicon
Use the format circle icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.1 7.87c.58-.64.9-1.47.9-2.34A3.53 3.53 0 0 0 18.47 2c-.87 0-1.69.32-2.33.9A9.7 9.7 0 0 0 12 2c-1.43 0-2.85.31-4.13.9C7.23 2.32 6.4 2 5.53 2A3.53 3.53 0 0 0 2 5.53c0 .87.32 1.7.9 2.34C2.31 9.15 2 10.57 2 12c0 1.46.3 2.85.9 4.14c-.58.64-.9 1.46-.9 2.33A3.53 3.53 0 0 0 5.53 22c.87 0 1.7-.32 2.34-.9c1.28.59 2.7.9 4.13.9c1.46 0 2.85-.3 4.14-.9c.64.58 1.46.9 2.33.9A3.53 3.53 0 0 0 22 18.47c0-.87-.32-1.69-.9-2.33c.6-1.29.9-2.68.9-4.14c0-1.43-.31-2.85-.9-4.13m-1.42 7.3c-.11-.04-.22-.08-.33-.11c-.17-.04-.35-.07-.52-.09c-.12-.01-.24-.02-.36-.02c-1.94 0-3.52 1.58-3.52 3.52c0 .12.01.24.02.36c.02.17.05.35.09.52c.03.11.07.22.11.33q0 .045.03.09l.03.09c-2.01.84-4.41.85-6.46 0l.03-.09q.03-.045.03-.09c.04-.11.08-.22.11-.33c.04-.17.07-.35.09-.52c.01-.12.02-.24.02-.36c0-1.94-1.58-3.52-3.52-3.52c-.12 0-.24.01-.36.02c-.17.02-.35.05-.52.09c-.11.03-.22.07-.33.11q-.045 0-.09.03l-.09.03c-.43-1.01-.64-2.1-.64-3.23c0-1.11.22-2.22.64-3.23c.01 0 .03.01.04.01a3.5 3.5 0 0 1-.83-.48c.3.23.62.41.97.53c.12.05.25.09.37.12c.08.02.15.03.22.04c.09.02.17.03.26.04c.12.01.24.02.36.02c1.94 0 3.52-1.58 3.52-3.52c0-.12-.01-.24-.02-.36c-.01-.09-.02-.17-.04-.26c-.01-.07-.02-.14-.04-.22c-.03-.12-.07-.25-.12-.37l-.05-.14c0-.01-.01-.03-.01-.04c2.04-.85 4.45-.84 6.46 0l-.03.09q-.03.045-.03.09c-.04.11-.08.22-.11.33c-.04.17-.07.35-.09.52c-.01.12-.02.24-.02.36c0 1.94 1.58 3.52 3.52 3.52c.12 0 .24-.01.36-.02c.17-.02.35-.05.52-.09c.11-.03.22-.07.33-.11q.045 0 .09-.03l.09-.03c.42 1.01.64 2.12.64 3.23c0 1.13-.21 2.22-.64 3.23l-.09-.03a.16.16 0 0 0-.09-.03"/></svg>
React
import type { SVGProps } from "react";
export function ReiconFormatCircleFilled(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.1 7.87c.58-.64.9-1.47.9-2.34A3.53 3.53 0 0 0 18.47 2c-.87 0-1.69.32-2.33.9A9.7 9.7 0 0 0 12 2c-1.43 0-2.85.31-4.13.9C7.23 2.32 6.4 2 5.53 2A3.53 3.53 0 0 0 2 5.53c0 .87.32 1.7.9 2.34C2.31 9.15 2 10.57 2 12c0 1.46.3 2.85.9 4.14c-.58.64-.9 1.46-.9 2.33A3.53 3.53 0 0 0 5.53 22c.87 0 1.7-.32 2.34-.9c1.28.59 2.7.9 4.13.9c1.46 0 2.85-.3 4.14-.9c.64.58 1.46.9 2.33.9A3.53 3.53 0 0 0 22 18.47c0-.87-.32-1.69-.9-2.33c.6-1.29.9-2.68.9-4.14c0-1.43-.31-2.85-.9-4.13m-1.42 7.3c-.11-.04-.22-.08-.33-.11c-.17-.04-.35-.07-.52-.09c-.12-.01-.24-.02-.36-.02c-1.94 0-3.52 1.58-3.52 3.52c0 .12.01.24.02.36c.02.17.05.35.09.52c.03.11.07.22.11.33q0 .045.03.09l.03.09c-2.01.84-4.41.85-6.46 0l.03-.09q.03-.045.03-.09c.04-.11.08-.22.11-.33c.04-.17.07-.35.09-.52c.01-.12.02-.24.02-.36c0-1.94-1.58-3.52-3.52-3.52c-.12 0-.24.01-.36.02c-.17.02-.35.05-.52.09c-.11.03-.22.07-.33.11q-.045 0-.09.03l-.09.03c-.43-1.01-.64-2.1-.64-3.23c0-1.11.22-2.22.64-3.23c.01 0 .03.01.04.01a3.5 3.5 0 0 1-.83-.48c.3.23.62.41.97.53c.12.05.25.09.37.12c.08.02.15.03.22.04c.09.02.17.03.26.04c.12.01.24.02.36.02c1.94 0 3.52-1.58 3.52-3.52c0-.12-.01-.24-.02-.36c-.01-.09-.02-.17-.04-.26c-.01-.07-.02-.14-.04-.22c-.03-.12-.07-.25-.12-.37l-.05-.14c0-.01-.01-.03-.01-.04c2.04-.85 4.45-.84 6.46 0l-.03.09q-.03.045-.03.09c-.04.11-.08.22-.11.33c-.04.17-.07.35-.09.52c-.01.12-.02.24-.02.36c0 1.94 1.58 3.52 3.52 3.52c.12 0 .24-.01.36-.02c.17-.02.35-.05.52-.09c.11-.03.22-.07.33-.11q.045 0 .09-.03l.09-.03c.42 1.01.64 2.12.64 3.23c0 1.13-.21 2.22-.64 3.23l-.09-.03a.16.16 0 0 0-.09-.03"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.1 7.87c.58-.64.9-1.47.9-2.34A3.53 3.53 0 0 0 18.47 2c-.87 0-1.69.32-2.33.9A9.7 9.7 0 0 0 12 2c-1.43 0-2.85.31-4.13.9C7.23 2.32 6.4 2 5.53 2A3.53 3.53 0 0 0 2 5.53c0 .87.32 1.7.9 2.34C2.31 9.15 2 10.57 2 12c0 1.46.3 2.85.9 4.14c-.58.64-.9 1.46-.9 2.33A3.53 3.53 0 0 0 5.53 22c.87 0 1.7-.32 2.34-.9c1.28.59 2.7.9 4.13.9c1.46 0 2.85-.3 4.14-.9c.64.58 1.46.9 2.33.9A3.53 3.53 0 0 0 22 18.47c0-.87-.32-1.69-.9-2.33c.6-1.29.9-2.68.9-4.14c0-1.43-.31-2.85-.9-4.13m-1.42 7.3c-.11-.04-.22-.08-.33-.11c-.17-.04-.35-.07-.52-.09c-.12-.01-.24-.02-.36-.02c-1.94 0-3.52 1.58-3.52 3.52c0 .12.01.24.02.36c.02.17.05.35.09.52c.03.11.07.22.11.33q0 .045.03.09l.03.09c-2.01.84-4.41.85-6.46 0l.03-.09q.03-.045.03-.09c.04-.11.08-.22.11-.33c.04-.17.07-.35.09-.52c.01-.12.02-.24.02-.36c0-1.94-1.58-3.52-3.52-3.52c-.12 0-.24.01-.36.02c-.17.02-.35.05-.52.09c-.11.03-.22.07-.33.11q-.045 0-.09.03l-.09.03c-.43-1.01-.64-2.1-.64-3.23c0-1.11.22-2.22.64-3.23c.01 0 .03.01.04.01a3.5 3.5 0 0 1-.83-.48c.3.23.62.41.97.53c.12.05.25.09.37.12c.08.02.15.03.22.04c.09.02.17.03.26.04c.12.01.24.02.36.02c1.94 0 3.52-1.58 3.52-3.52c0-.12-.01-.24-.02-.36c-.01-.09-.02-.17-.04-.26c-.01-.07-.02-.14-.04-.22c-.03-.12-.07-.25-.12-.37l-.05-.14c0-.01-.01-.03-.01-.04c2.04-.85 4.45-.84 6.46 0l-.03.09q-.03.045-.03.09c-.04.11-.08.22-.11.33c-.04.17-.07.35-.09.52c-.01.12-.02.24-.02.36c0 1.94 1.58 3.52 3.52 3.52c.12 0 .24-.01.36-.02c.17-.02.35-.05.52-.09c.11-.03.22-.07.33-.11q.045 0 .09-.03l.09-.03c.42 1.01.64 2.12.64 3.23c0 1.13-.21 2.22-.64 3.23l-.09-.03a.16.16 0 0 0-.09-.03"/></svg> </template>
CSS
.icon-format-circle-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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M21.1%207.87c.58-.64.9-1.47.9-2.34A3.53%203.53%200%200%200%2018.47%202c-.87%200-1.69.32-2.33.9A9.7%209.7%200%200%200%2012%202c-1.43%200-2.85.31-4.13.9C7.23%202.32%206.4%202%205.53%202A3.53%203.53%200%200%200%202%205.53c0%20.87.32%201.7.9%202.34C2.31%209.15%202%2010.57%202%2012c0%201.46.3%202.85.9%204.14c-.58.64-.9%201.46-.9%202.33A3.53%203.53%200%200%200%205.53%2022c.87%200%201.7-.32%202.34-.9c1.28.59%202.7.9%204.13.9c1.46%200%202.85-.3%204.14-.9c.64.58%201.46.9%202.33.9A3.53%203.53%200%200%200%2022%2018.47c0-.87-.32-1.69-.9-2.33c.6-1.29.9-2.68.9-4.14c0-1.43-.31-2.85-.9-4.13m-1.42%207.3c-.11-.04-.22-.08-.33-.11c-.17-.04-.35-.07-.52-.09c-.12-.01-.24-.02-.36-.02c-1.94%200-3.52%201.58-3.52%203.52c0%20.12.01.24.02.36c.02.17.05.35.09.52c.03.11.07.22.11.33q0%20.045.03.09l.03.09c-2.01.84-4.41.85-6.46%200l.03-.09q.03-.045.03-.09c.04-.11.08-.22.11-.33c.04-.17.07-.35.09-.52c.01-.12.02-.24.02-.36c0-1.94-1.58-3.52-3.52-3.52c-.12%200-.24.01-.36.02c-.17.02-.35.05-.52.09c-.11.03-.22.07-.33.11q-.045%200-.09.03l-.09.03c-.43-1.01-.64-2.1-.64-3.23c0-1.11.22-2.22.64-3.23c.01%200%20.03.01.04.01a3.5%203.5%200%200%201-.83-.48c.3.23.62.41.97.53c.12.05.25.09.37.12c.08.02.15.03.22.04c.09.02.17.03.26.04c.12.01.24.02.36.02c1.94%200%203.52-1.58%203.52-3.52c0-.12-.01-.24-.02-.36c-.01-.09-.02-.17-.04-.26c-.01-.07-.02-.14-.04-.22c-.03-.12-.07-.25-.12-.37l-.05-.14c0-.01-.01-.03-.01-.04c2.04-.85%204.45-.84%206.46%200l-.03.09q-.03.045-.03.09c-.04.11-.08.22-.11.33c-.04.17-.07.35-.09.52c-.01.12-.02.24-.02.36c0%201.94%201.58%203.52%203.52%203.52c.12%200%20.24-.01.36-.02c.17-.02.35-.05.52-.09c.11-.03.22-.07.33-.11q.045%200%20.09-.03l.09-.03c.42%201.01.64%202.12.64%203.23c0%201.13-.21%202.22-.64%203.23l-.09-.03a.16.16%200%200%200-.09-.03%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M21.1%207.87c.58-.64.9-1.47.9-2.34A3.53%203.53%200%200%200%2018.47%202c-.87%200-1.69.32-2.33.9A9.7%209.7%200%200%200%2012%202c-1.43%200-2.85.31-4.13.9C7.23%202.32%206.4%202%205.53%202A3.53%203.53%200%200%200%202%205.53c0%20.87.32%201.7.9%202.34C2.31%209.15%202%2010.57%202%2012c0%201.46.3%202.85.9%204.14c-.58.64-.9%201.46-.9%202.33A3.53%203.53%200%200%200%205.53%2022c.87%200%201.7-.32%202.34-.9c1.28.59%202.7.9%204.13.9c1.46%200%202.85-.3%204.14-.9c.64.58%201.46.9%202.33.9A3.53%203.53%200%200%200%2022%2018.47c0-.87-.32-1.69-.9-2.33c.6-1.29.9-2.68.9-4.14c0-1.43-.31-2.85-.9-4.13m-1.42%207.3c-.11-.04-.22-.08-.33-.11c-.17-.04-.35-.07-.52-.09c-.12-.01-.24-.02-.36-.02c-1.94%200-3.52%201.58-3.52%203.52c0%20.12.01.24.02.36c.02.17.05.35.09.52c.03.11.07.22.11.33q0%20.045.03.09l.03.09c-2.01.84-4.41.85-6.46%200l.03-.09q.03-.045.03-.09c.04-.11.08-.22.11-.33c.04-.17.07-.35.09-.52c.01-.12.02-.24.02-.36c0-1.94-1.58-3.52-3.52-3.52c-.12%200-.24.01-.36.02c-.17.02-.35.05-.52.09c-.11.03-.22.07-.33.11q-.045%200-.09.03l-.09.03c-.43-1.01-.64-2.1-.64-3.23c0-1.11.22-2.22.64-3.23c.01%200%20.03.01.04.01a3.5%203.5%200%200%201-.83-.48c.3.23.62.41.97.53c.12.05.25.09.37.12c.08.02.15.03.22.04c.09.02.17.03.26.04c.12.01.24.02.36.02c1.94%200%203.52-1.58%203.52-3.52c0-.12-.01-.24-.02-.36c-.01-.09-.02-.17-.04-.26c-.01-.07-.02-.14-.04-.22c-.03-.12-.07-.25-.12-.37l-.05-.14c0-.01-.01-.03-.01-.04c2.04-.85%204.45-.84%206.46%200l-.03.09q-.03.045-.03.09c-.04.11-.08.22-.11.33c-.04.17-.07.35-.09.52c-.01.12-.02.24-.02.36c0%201.94%201.58%203.52%203.52%203.52c.12%200%20.24-.01.36-.02c.17-.02.35-.05.52-.09c.11-.03.22-.07.33-.11q.045%200%20.09-.03l.09-.03c.42%201.01.64%202.12.64%203.23c0%201.13-.21%202.22-.64%203.23l-.09-.03a.16.16%200%200%200-.09-.03%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/format-circle-filled.svg?color=%231a73e8&size=48