user circle icon
user-circle-outline from Solar by 480 Design · Outline · Users · CC-BY-4.0 Attribution required.
- Name
- user-circle-outline
- Set
- Solar
- Style
- Outline
- Category
- Users
- Viewbox
- 24×24
- License
- CC BY 4.0
5 other variants in Solar
The same icon in other sets
user-circleBoxIcons v2user-circleBoxIcons v2 Soliduser-circleFont Awesome Regularuser-circleFont Awesome Soliduser-circle-outlineFlowbite Iconsuser-circleHeroIconsuser-circleHuge Iconsuser-circleIconoiruser-circleJam Iconsuser-circleLine Awesomeuser-circleMage Iconsuser-circleMajesticonsuser-circleMyna UI Iconsuser-circlePhosphoruser-circleTabler Iconsuser-circleTDesign Iconsuser-circle-outlineTeenyiconsuser-circleUnicons
More users icons from Solar
user-block-bolduser-block-rounded-bolduser-bolduser-check-bolduser-check-rounded-bolduser-cross-bolduser-cross-rounded-bolduser-hand-up-bolduser-hands-bolduser-heart-bolduser-heart-rounded-bolduser-id-bolduser-minus-bolduser-minus-rounded-bolduser-plus-bolduser-plus-rounded-bolduser-rounded-bolduser-speak-bolduser-speak-rounded-boldusers-group-rounded-boldusers-group-two-rounded-bold
Use the user circle icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M8.25 9C8.25 6.92893 9.92893 5.25 12 5.25C14.0711 5.25 15.75 6.92893 15.75 9C15.75 11.0711 14.0711 12.75 12 12.75C9.92893 12.75 8.25 11.0711 8.25 9ZM12 6.75C10.7574 6.75 9.75 7.75736 9.75 9C9.75 10.2426 10.7574 11.25 12 11.25C13.2426 11.25 14.25 10.2426 14.25 9C14.25 7.75736 13.2426 6.75 12 6.75Z"/><path d="M1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12ZM12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 14.5456 3.77827 16.851 5.4421 18.5235C5.6225 17.5504 5.97694 16.6329 6.68837 15.8951C7.75252 14.7915 9.45416 14.25 12 14.25C14.5457 14.25 16.2474 14.7915 17.3115 15.8951C18.023 16.6329 18.3774 17.5505 18.5578 18.5236C20.2217 16.8511 21.25 14.5456 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75ZM17.1937 19.6554C17.0918 18.4435 16.8286 17.5553 16.2318 16.9363C15.5823 16.2628 14.3789 15.75 12 15.75C9.62099 15.75 8.41761 16.2628 7.76815 16.9363C7.17127 17.5553 6.90811 18.4434 6.80622 19.6553C8.28684 20.6618 10.0747 21.25 12 21.25C13.9252 21.25 15.7131 20.6618 17.1937 19.6554Z"/></g></svg>
React
import type { SVGProps } from "react";
export function SolarUserCircleOutline(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor" fillRule="evenodd" clipRule="evenodd"><path d="M8.25 9C8.25 6.92893 9.92893 5.25 12 5.25C14.0711 5.25 15.75 6.92893 15.75 9C15.75 11.0711 14.0711 12.75 12 12.75C9.92893 12.75 8.25 11.0711 8.25 9ZM12 6.75C10.7574 6.75 9.75 7.75736 9.75 9C9.75 10.2426 10.7574 11.25 12 11.25C13.2426 11.25 14.25 10.2426 14.25 9C14.25 7.75736 13.2426 6.75 12 6.75Z"/><path d="M1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12ZM12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 14.5456 3.77827 16.851 5.4421 18.5235C5.6225 17.5504 5.97694 16.6329 6.68837 15.8951C7.75252 14.7915 9.45416 14.25 12 14.25C14.5457 14.25 16.2474 14.7915 17.3115 15.8951C18.023 16.6329 18.3774 17.5505 18.5578 18.5236C20.2217 16.8511 21.25 14.5456 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75ZM17.1937 19.6554C17.0918 18.4435 16.8286 17.5553 16.2318 16.9363C15.5823 16.2628 14.3789 15.75 12 15.75C9.62099 15.75 8.41761 16.2628 7.76815 16.9363C7.17127 17.5553 6.90811 18.4434 6.80622 19.6553C8.28684 20.6618 10.0747 21.25 12 21.25C13.9252 21.25 15.7131 20.6618 17.1937 19.6554Z"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M8.25 9C8.25 6.92893 9.92893 5.25 12 5.25C14.0711 5.25 15.75 6.92893 15.75 9C15.75 11.0711 14.0711 12.75 12 12.75C9.92893 12.75 8.25 11.0711 8.25 9ZM12 6.75C10.7574 6.75 9.75 7.75736 9.75 9C9.75 10.2426 10.7574 11.25 12 11.25C13.2426 11.25 14.25 10.2426 14.25 9C14.25 7.75736 13.2426 6.75 12 6.75Z"/><path d="M1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12ZM12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 14.5456 3.77827 16.851 5.4421 18.5235C5.6225 17.5504 5.97694 16.6329 6.68837 15.8951C7.75252 14.7915 9.45416 14.25 12 14.25C14.5457 14.25 16.2474 14.7915 17.3115 15.8951C18.023 16.6329 18.3774 17.5505 18.5578 18.5236C20.2217 16.8511 21.25 14.5456 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75ZM17.1937 19.6554C17.0918 18.4435 16.8286 17.5553 16.2318 16.9363C15.5823 16.2628 14.3789 15.75 12 15.75C9.62099 15.75 8.41761 16.2628 7.76815 16.9363C7.17127 17.5553 6.90811 18.4434 6.80622 19.6553C8.28684 20.6618 10.0747 21.25 12 21.25C13.9252 21.25 15.7131 20.6618 17.1937 19.6554Z"/></g></svg> </template>
CSS
.icon-user-circle-outline {
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%3Cg%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M8.25%209C8.25%206.92893%209.92893%205.25%2012%205.25C14.0711%205.25%2015.75%206.92893%2015.75%209C15.75%2011.0711%2014.0711%2012.75%2012%2012.75C9.92893%2012.75%208.25%2011.0711%208.25%209ZM12%206.75C10.7574%206.75%209.75%207.75736%209.75%209C9.75%2010.2426%2010.7574%2011.25%2012%2011.25C13.2426%2011.25%2014.25%2010.2426%2014.25%209C14.25%207.75736%2013.2426%206.75%2012%206.75Z%22%2F%3E%3Cpath%20d%3D%22M1.25%2012C1.25%206.06294%206.06294%201.25%2012%201.25C17.9371%201.25%2022.75%206.06294%2022.75%2012C22.75%2017.9371%2017.9371%2022.75%2012%2022.75C6.06294%2022.75%201.25%2017.9371%201.25%2012ZM12%202.75C6.89137%202.75%202.75%206.89137%202.75%2012C2.75%2014.5456%203.77827%2016.851%205.4421%2018.5235C5.6225%2017.5504%205.97694%2016.6329%206.68837%2015.8951C7.75252%2014.7915%209.45416%2014.25%2012%2014.25C14.5457%2014.25%2016.2474%2014.7915%2017.3115%2015.8951C18.023%2016.6329%2018.3774%2017.5505%2018.5578%2018.5236C20.2217%2016.8511%2021.25%2014.5456%2021.25%2012C21.25%206.89137%2017.1086%202.75%2012%202.75ZM17.1937%2019.6554C17.0918%2018.4435%2016.8286%2017.5553%2016.2318%2016.9363C15.5823%2016.2628%2014.3789%2015.75%2012%2015.75C9.62099%2015.75%208.41761%2016.2628%207.76815%2016.9363C7.17127%2017.5553%206.90811%2018.4434%206.80622%2019.6553C8.28684%2020.6618%2010.0747%2021.25%2012%2021.25C13.9252%2021.25%2015.7131%2020.6618%2017.1937%2019.6554Z%22%2F%3E%3C%2Fg%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%3Cg%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M8.25%209C8.25%206.92893%209.92893%205.25%2012%205.25C14.0711%205.25%2015.75%206.92893%2015.75%209C15.75%2011.0711%2014.0711%2012.75%2012%2012.75C9.92893%2012.75%208.25%2011.0711%208.25%209ZM12%206.75C10.7574%206.75%209.75%207.75736%209.75%209C9.75%2010.2426%2010.7574%2011.25%2012%2011.25C13.2426%2011.25%2014.25%2010.2426%2014.25%209C14.25%207.75736%2013.2426%206.75%2012%206.75Z%22%2F%3E%3Cpath%20d%3D%22M1.25%2012C1.25%206.06294%206.06294%201.25%2012%201.25C17.9371%201.25%2022.75%206.06294%2022.75%2012C22.75%2017.9371%2017.9371%2022.75%2012%2022.75C6.06294%2022.75%201.25%2017.9371%201.25%2012ZM12%202.75C6.89137%202.75%202.75%206.89137%202.75%2012C2.75%2014.5456%203.77827%2016.851%205.4421%2018.5235C5.6225%2017.5504%205.97694%2016.6329%206.68837%2015.8951C7.75252%2014.7915%209.45416%2014.25%2012%2014.25C14.5457%2014.25%2016.2474%2014.7915%2017.3115%2015.8951C18.023%2016.6329%2018.3774%2017.5505%2018.5578%2018.5236C20.2217%2016.8511%2021.25%2014.5456%2021.25%2012C21.25%206.89137%2017.1086%202.75%2012%202.75ZM17.1937%2019.6554C17.0918%2018.4435%2016.8286%2017.5553%2016.2318%2016.9363C15.5823%2016.2628%2014.3789%2015.75%2012%2015.75C9.62099%2015.75%208.41761%2016.2628%207.76815%2016.9363C7.17127%2017.5553%206.90811%2018.4434%206.80622%2019.6553C8.28684%2020.6618%2010.0747%2021.25%2012%2021.25C13.9252%2021.25%2015.7131%2020.6618%2017.1937%2019.6554Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/solar/user-circle-outline.svg?color=%231a73e8&size=48