circle large icon
circle-large from Codicons by Microsoft Corporation · Regular · CC-BY-4.0 Attribution required.
- Name
- circle-large
- Set
- Codicons
- Style
- Regular
- Viewbox
- 16×16
- License
- CC BY 4.0
- Aliases
- circle-large-outline
The same icon in other sets
Related icons in Codicons
Use the circle large icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" fill-rule="evenodd" d="M9.589 2.215A5.8 5.8 0 0 0 8 2q-.83.001-1.588.215l-.006.002q-.77.212-1.432.601A6.16 6.16 0 0 0 2.82 4.98l-.002.004A6 6 0 0 0 2.21 6.41A6 6 0 0 0 2.001 8q0 .832.21 1.591q.218.772.608 1.435q.393.663.94 1.216q.554.547 1.216.94a6 6 0 0 0 1.435.609q.759.208 1.59.209q.832 0 1.591-.21q.772-.218 1.426-.607l.004-.002a6.16 6.16 0 0 0 2.161-2.155q.39-.661.6-1.432l.003-.006A5.8 5.8 0 0 0 14 8q0-.83-.215-1.588l-.002-.006a5.8 5.8 0 0 0-.6-1.423l-.002-.004a6 6 0 0 0-.942-1.21l-.008-.008a6 6 0 0 0-1.21-.942l-.004-.002a5.8 5.8 0 0 0-1.423-.6zm4.455 9.32a7.16 7.16 0 0 1-2.516 2.508a7 7 0 0 1-1.668.71A7 7 0 0 1 8.001 15a7 7 0 0 1-1.86-.246a7 7 0 0 1-1.674-.711a7.3 7.3 0 0 1-1.415-1.094a7.3 7.3 0 0 1-1.094-1.415a7 7 0 0 1-.71-1.675A7 7 0 0 1 1 8q0-.964.246-1.86a7 7 0 0 1 .711-1.667a7.16 7.16 0 0 1 2.509-2.516a7 7 0 0 1 1.675-.704A6.8 6.8 0 0 1 8 1q.964 0 1.86.253a6.9 6.9 0 0 1 3.083 1.805a6.9 6.9 0 0 1 1.804 3.083Q15 7.036 15 8t-.253 1.86a7 7 0 0 1-.704 1.674" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function CodiconCircleLarge(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" fillRule="evenodd" d="M9.589 2.215A5.8 5.8 0 0 0 8 2q-.83.001-1.588.215l-.006.002q-.77.212-1.432.601A6.16 6.16 0 0 0 2.82 4.98l-.002.004A6 6 0 0 0 2.21 6.41A6 6 0 0 0 2.001 8q0 .832.21 1.591q.218.772.608 1.435q.393.663.94 1.216q.554.547 1.216.94a6 6 0 0 0 1.435.609q.759.208 1.59.209q.832 0 1.591-.21q.772-.218 1.426-.607l.004-.002a6.16 6.16 0 0 0 2.161-2.155q.39-.661.6-1.432l.003-.006A5.8 5.8 0 0 0 14 8q0-.83-.215-1.588l-.002-.006a5.8 5.8 0 0 0-.6-1.423l-.002-.004a6 6 0 0 0-.942-1.21l-.008-.008a6 6 0 0 0-1.21-.942l-.004-.002a5.8 5.8 0 0 0-1.423-.6zm4.455 9.32a7.16 7.16 0 0 1-2.516 2.508a7 7 0 0 1-1.668.71A7 7 0 0 1 8.001 15a7 7 0 0 1-1.86-.246a7 7 0 0 1-1.674-.711a7.3 7.3 0 0 1-1.415-1.094a7.3 7.3 0 0 1-1.094-1.415a7 7 0 0 1-.71-1.675A7 7 0 0 1 1 8q0-.964.246-1.86a7 7 0 0 1 .711-1.667a7.16 7.16 0 0 1 2.509-2.516a7 7 0 0 1 1.675-.704A6.8 6.8 0 0 1 8 1q.964 0 1.86.253a6.9 6.9 0 0 1 3.083 1.805a6.9 6.9 0 0 1 1.804 3.083Q15 7.036 15 8t-.253 1.86a7 7 0 0 1-.704 1.674" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" fill-rule="evenodd" d="M9.589 2.215A5.8 5.8 0 0 0 8 2q-.83.001-1.588.215l-.006.002q-.77.212-1.432.601A6.16 6.16 0 0 0 2.82 4.98l-.002.004A6 6 0 0 0 2.21 6.41A6 6 0 0 0 2.001 8q0 .832.21 1.591q.218.772.608 1.435q.393.663.94 1.216q.554.547 1.216.94a6 6 0 0 0 1.435.609q.759.208 1.59.209q.832 0 1.591-.21q.772-.218 1.426-.607l.004-.002a6.16 6.16 0 0 0 2.161-2.155q.39-.661.6-1.432l.003-.006A5.8 5.8 0 0 0 14 8q0-.83-.215-1.588l-.002-.006a5.8 5.8 0 0 0-.6-1.423l-.002-.004a6 6 0 0 0-.942-1.21l-.008-.008a6 6 0 0 0-1.21-.942l-.004-.002a5.8 5.8 0 0 0-1.423-.6zm4.455 9.32a7.16 7.16 0 0 1-2.516 2.508a7 7 0 0 1-1.668.71A7 7 0 0 1 8.001 15a7 7 0 0 1-1.86-.246a7 7 0 0 1-1.674-.711a7.3 7.3 0 0 1-1.415-1.094a7.3 7.3 0 0 1-1.094-1.415a7 7 0 0 1-.71-1.675A7 7 0 0 1 1 8q0-.964.246-1.86a7 7 0 0 1 .711-1.667a7.16 7.16 0 0 1 2.509-2.516a7 7 0 0 1 1.675-.704A6.8 6.8 0 0 1 8 1q.964 0 1.86.253a6.9 6.9 0 0 1 3.083 1.805a6.9 6.9 0 0 1 1.804 3.083Q15 7.036 15 8t-.253 1.86a7 7 0 0 1-.704 1.674" clip-rule="evenodd"/></svg> </template>
CSS
.icon-circle-large {
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%20fill-rule%3D%22evenodd%22%20d%3D%22M9.589%202.215A5.8%205.8%200%200%200%208%202q-.83.001-1.588.215l-.006.002q-.77.212-1.432.601A6.16%206.16%200%200%200%202.82%204.98l-.002.004A6%206%200%200%200%202.21%206.41A6%206%200%200%200%202.001%208q0%20.832.21%201.591q.218.772.608%201.435q.393.663.94%201.216q.554.547%201.216.94a6%206%200%200%200%201.435.609q.759.208%201.59.209q.832%200%201.591-.21q.772-.218%201.426-.607l.004-.002a6.16%206.16%200%200%200%202.161-2.155q.39-.661.6-1.432l.003-.006A5.8%205.8%200%200%200%2014%208q0-.83-.215-1.588l-.002-.006a5.8%205.8%200%200%200-.6-1.423l-.002-.004a6%206%200%200%200-.942-1.21l-.008-.008a6%206%200%200%200-1.21-.942l-.004-.002a5.8%205.8%200%200%200-1.423-.6zm4.455%209.32a7.16%207.16%200%200%201-2.516%202.508a7%207%200%200%201-1.668.71A7%207%200%200%201%208.001%2015a7%207%200%200%201-1.86-.246a7%207%200%200%201-1.674-.711a7.3%207.3%200%200%201-1.415-1.094a7.3%207.3%200%200%201-1.094-1.415a7%207%200%200%201-.71-1.675A7%207%200%200%201%201%208q0-.964.246-1.86a7%207%200%200%201%20.711-1.667a7.16%207.16%200%200%201%202.509-2.516a7%207%200%200%201%201.675-.704A6.8%206.8%200%200%201%208%201q.964%200%201.86.253a6.9%206.9%200%200%201%203.083%201.805a6.9%206.9%200%200%201%201.804%203.083Q15%207.036%2015%208t-.253%201.86a7%207%200%200%201-.704%201.674%22%20clip-rule%3D%22evenodd%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%20fill-rule%3D%22evenodd%22%20d%3D%22M9.589%202.215A5.8%205.8%200%200%200%208%202q-.83.001-1.588.215l-.006.002q-.77.212-1.432.601A6.16%206.16%200%200%200%202.82%204.98l-.002.004A6%206%200%200%200%202.21%206.41A6%206%200%200%200%202.001%208q0%20.832.21%201.591q.218.772.608%201.435q.393.663.94%201.216q.554.547%201.216.94a6%206%200%200%200%201.435.609q.759.208%201.59.209q.832%200%201.591-.21q.772-.218%201.426-.607l.004-.002a6.16%206.16%200%200%200%202.161-2.155q.39-.661.6-1.432l.003-.006A5.8%205.8%200%200%200%2014%208q0-.83-.215-1.588l-.002-.006a5.8%205.8%200%200%200-.6-1.423l-.002-.004a6%206%200%200%200-.942-1.21l-.008-.008a6%206%200%200%200-1.21-.942l-.004-.002a5.8%205.8%200%200%200-1.423-.6zm4.455%209.32a7.16%207.16%200%200%201-2.516%202.508a7%207%200%200%201-1.668.71A7%207%200%200%201%208.001%2015a7%207%200%200%201-1.86-.246a7%207%200%200%201-1.674-.711a7.3%207.3%200%200%201-1.415-1.094a7.3%207.3%200%200%201-1.094-1.415a7%207%200%200%201-.71-1.675A7%207%200%200%201%201%208q0-.964.246-1.86a7%207%200%200%201%20.711-1.667a7.16%207.16%200%200%201%202.509-2.516a7%207%200%200%201%201.675-.704A6.8%206.8%200%200%201%208%201q.964%200%201.86.253a6.9%206.9%200%200%201%203.083%201.805a6.9%206.9%200%200%201%201.804%203.083Q15%207.036%2015%208t-.253%201.86a7%207%200%200%201-.704%201.674%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/codicon/circle-large.svg?color=%231a73e8&size=48