person-thin from Phosphor by Phosphor Icons · Thin · MIT Free for personal and commercial use.

Name
person-thin
Set
Phosphor
Style
Thin
Viewbox
256×256
License
MIT
Aliases
pedestrian-thin

5 other variants in Phosphor

The same icon in other sets

Related icons in Phosphor

Use the person icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><path fill="currentColor" d="M128 68a28 28 0 1 0-28-28a28 28 0 0 0 28 28m0-48a20 20 0 1 1-20 20a20 20 0 0 1 20-20m87.42 116.78l-45.25-51.3a28 28 0 0 0-21-9.48h-42.34a28 28 0 0 0-21 9.48l-45.25 51.3a16 16 0 0 0 22.56 22.69L89 138.7l-19.7 74.88a16 16 0 0 0 29.08 13.35L128 176l29.58 51a16 16 0 0 0 29.08-13.35L167 138.7l25.9 20.77a16 16 0 0 0 22.56-22.69Zm-5.76 16.87a8 8 0 0 1-11.31 0a3 3 0 0 0-.33-.29l-35.51-28.48a4 4 0 0 0-6.38 4.13L179 215.94a4 4 0 0 0 .24.67a8 8 0 1 1-14.5 6.76c-.05-.11-.11-.21-.17-.32L131.46 166a4 4 0 0 0-6.92 0l-33.12 57.05c-.06.11-.12.21-.17.32a8 8 0 1 1-14.5-6.76a4 4 0 0 0 .24-.67L99.87 129a4 4 0 0 0-6.38-4.13L58 153.36a3 3 0 0 0-.33.29a8 8 0 0 1-11.31-11.31l.17-.18l45.3-51.39a20 20 0 0 1 15-6.77h42.34a20 20 0 0 1 15 6.77l45.32 51.39l.17.18a8 8 0 0 1 0 11.31"/></svg>

React

import type { SVGProps } from "react";

export function PhPersonThin(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><path fill="currentColor" d="M128 68a28 28 0 1 0-28-28a28 28 0 0 0 28 28m0-48a20 20 0 1 1-20 20a20 20 0 0 1 20-20m87.42 116.78l-45.25-51.3a28 28 0 0 0-21-9.48h-42.34a28 28 0 0 0-21 9.48l-45.25 51.3a16 16 0 0 0 22.56 22.69L89 138.7l-19.7 74.88a16 16 0 0 0 29.08 13.35L128 176l29.58 51a16 16 0 0 0 29.08-13.35L167 138.7l25.9 20.77a16 16 0 0 0 22.56-22.69Zm-5.76 16.87a8 8 0 0 1-11.31 0a3 3 0 0 0-.33-.29l-35.51-28.48a4 4 0 0 0-6.38 4.13L179 215.94a4 4 0 0 0 .24.67a8 8 0 1 1-14.5 6.76c-.05-.11-.11-.21-.17-.32L131.46 166a4 4 0 0 0-6.92 0l-33.12 57.05c-.06.11-.12.21-.17.32a8 8 0 1 1-14.5-6.76a4 4 0 0 0 .24-.67L99.87 129a4 4 0 0 0-6.38-4.13L58 153.36a3 3 0 0 0-.33.29a8 8 0 0 1-11.31-11.31l.17-.18l45.3-51.39a20 20 0 0 1 15-6.77h42.34a20 20 0 0 1 15 6.77l45.32 51.39l.17.18a8 8 0 0 1 0 11.31"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><path fill="currentColor" d="M128 68a28 28 0 1 0-28-28a28 28 0 0 0 28 28m0-48a20 20 0 1 1-20 20a20 20 0 0 1 20-20m87.42 116.78l-45.25-51.3a28 28 0 0 0-21-9.48h-42.34a28 28 0 0 0-21 9.48l-45.25 51.3a16 16 0 0 0 22.56 22.69L89 138.7l-19.7 74.88a16 16 0 0 0 29.08 13.35L128 176l29.58 51a16 16 0 0 0 29.08-13.35L167 138.7l25.9 20.77a16 16 0 0 0 22.56-22.69Zm-5.76 16.87a8 8 0 0 1-11.31 0a3 3 0 0 0-.33-.29l-35.51-28.48a4 4 0 0 0-6.38 4.13L179 215.94a4 4 0 0 0 .24.67a8 8 0 1 1-14.5 6.76c-.05-.11-.11-.21-.17-.32L131.46 166a4 4 0 0 0-6.92 0l-33.12 57.05c-.06.11-.12.21-.17.32a8 8 0 1 1-14.5-6.76a4 4 0 0 0 .24-.67L99.87 129a4 4 0 0 0-6.38-4.13L58 153.36a3 3 0 0 0-.33.29a8 8 0 0 1-11.31-11.31l.17-.18l45.3-51.39a20 20 0 0 1 15-6.77h42.34a20 20 0 0 1 15 6.77l45.32 51.39l.17.18a8 8 0 0 1 0 11.31"/></svg>
</template>

CSS

.icon-person-thin {
  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%20256%20256%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M128%2068a28%2028%200%201%200-28-28a28%2028%200%200%200%2028%2028m0-48a20%2020%200%201%201-20%2020a20%2020%200%200%201%2020-20m87.42%20116.78l-45.25-51.3a28%2028%200%200%200-21-9.48h-42.34a28%2028%200%200%200-21%209.48l-45.25%2051.3a16%2016%200%200%200%2022.56%2022.69L89%20138.7l-19.7%2074.88a16%2016%200%200%200%2029.08%2013.35L128%20176l29.58%2051a16%2016%200%200%200%2029.08-13.35L167%20138.7l25.9%2020.77a16%2016%200%200%200%2022.56-22.69Zm-5.76%2016.87a8%208%200%200%201-11.31%200a3%203%200%200%200-.33-.29l-35.51-28.48a4%204%200%200%200-6.38%204.13L179%20215.94a4%204%200%200%200%20.24.67a8%208%200%201%201-14.5%206.76c-.05-.11-.11-.21-.17-.32L131.46%20166a4%204%200%200%200-6.92%200l-33.12%2057.05c-.06.11-.12.21-.17.32a8%208%200%201%201-14.5-6.76a4%204%200%200%200%20.24-.67L99.87%20129a4%204%200%200%200-6.38-4.13L58%20153.36a3%203%200%200%200-.33.29a8%208%200%200%201-11.31-11.31l.17-.18l45.3-51.39a20%2020%200%200%201%2015-6.77h42.34a20%2020%200%200%201%2015%206.77l45.32%2051.39l.17.18a8%208%200%200%201%200%2011.31%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%20256%20256%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M128%2068a28%2028%200%201%200-28-28a28%2028%200%200%200%2028%2028m0-48a20%2020%200%201%201-20%2020a20%2020%200%200%201%2020-20m87.42%20116.78l-45.25-51.3a28%2028%200%200%200-21-9.48h-42.34a28%2028%200%200%200-21%209.48l-45.25%2051.3a16%2016%200%200%200%2022.56%2022.69L89%20138.7l-19.7%2074.88a16%2016%200%200%200%2029.08%2013.35L128%20176l29.58%2051a16%2016%200%200%200%2029.08-13.35L167%20138.7l25.9%2020.77a16%2016%200%200%200%2022.56-22.69Zm-5.76%2016.87a8%208%200%200%201-11.31%200a3%203%200%200%200-.33-.29l-35.51-28.48a4%204%200%200%200-6.38%204.13L179%20215.94a4%204%200%200%200%20.24.67a8%208%200%201%201-14.5%206.76c-.05-.11-.11-.21-.17-.32L131.46%20166a4%204%200%200%200-6.92%200l-33.12%2057.05c-.06.11-.12.21-.17.32a8%208%200%201%201-14.5-6.76a4%204%200%200%200%20.24-.67L99.87%20129a4%204%200%200%200-6.38-4.13L58%20153.36a3%203%200%200%200-.33.29a8%208%200%200%201-11.31-11.31l.17-.18l45.3-51.39a20%2020%200%200%201%2015-6.77h42.34a20%2020%200%200%201%2015%206.77l45.32%2051.39l.17.18a8%208%200%200%201%200%2011.31%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ph/person-thin.svg?color=%231a73e8&size=48