balance scale icon

balance-scale from Unicons by Iconscout · Line · User Interface · Apache-2.0 Free for personal and commercial use.

Name
balance-scale
Set
Unicons
Style
Line
Category
User Interface
Viewbox
24×24
License
Apache 2.0

The same icon in other sets

More user interface icons from Unicons

Use the balance scale icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M22.964 13.823a1 1 0 0 0-.028-.175l-2.305-6.137A3 3 0 0 0 22 5a1 1 0 0 0-2 0a1 1 0 0 1-1.882.473A2.89 2.89 0 0 0 15.54 4H13V3a1 1 0 0 0-2 0v1H8.46a2.89 2.89 0 0 0-2.578 1.473A1 1 0 0 1 4 5a1 1 0 0 0-2 0a3 3 0 0 0 1.369 2.511l-2.305 6.137a1 1 0 0 0-.028.175A1 1 0 0 0 1 14l.003.027l.004.039a3.994 3.994 0 0 0 7.986 0l.004-.039L9 14a1 1 0 0 0-.036-.177a1 1 0 0 0-.028-.175L6.629 7.504A3 3 0 0 0 7.643 6.42A.92.92 0 0 1 8.46 6H11v14H8a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2h-3V6h2.54a.92.92 0 0 1 .817.42a3 3 0 0 0 1.014 1.084l-2.307 6.144a1 1 0 0 0-.028.175A1 1 0 0 0 15 14l.003.027l.004.039a3.994 3.994 0 0 0 7.986 0l.004-.039Q23 14.013 23 14a1 1 0 0 0-.036-.177M5 8.856L6.556 13H3.444ZM6.723 15A2.02 2.02 0 0 1 5 16a2 2 0 0 1-1.731-1ZM19 8.856L20.556 13h-3.112ZM19 16a2 2 0 0 1-1.731-1h3.454A2.02 2.02 0 0 1 19 16"/></svg>

React

import type { SVGProps } from "react";

export function UilBalanceScale(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="M22.964 13.823a1 1 0 0 0-.028-.175l-2.305-6.137A3 3 0 0 0 22 5a1 1 0 0 0-2 0a1 1 0 0 1-1.882.473A2.89 2.89 0 0 0 15.54 4H13V3a1 1 0 0 0-2 0v1H8.46a2.89 2.89 0 0 0-2.578 1.473A1 1 0 0 1 4 5a1 1 0 0 0-2 0a3 3 0 0 0 1.369 2.511l-2.305 6.137a1 1 0 0 0-.028.175A1 1 0 0 0 1 14l.003.027l.004.039a3.994 3.994 0 0 0 7.986 0l.004-.039L9 14a1 1 0 0 0-.036-.177a1 1 0 0 0-.028-.175L6.629 7.504A3 3 0 0 0 7.643 6.42A.92.92 0 0 1 8.46 6H11v14H8a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2h-3V6h2.54a.92.92 0 0 1 .817.42a3 3 0 0 0 1.014 1.084l-2.307 6.144a1 1 0 0 0-.028.175A1 1 0 0 0 15 14l.003.027l.004.039a3.994 3.994 0 0 0 7.986 0l.004-.039Q23 14.013 23 14a1 1 0 0 0-.036-.177M5 8.856L6.556 13H3.444ZM6.723 15A2.02 2.02 0 0 1 5 16a2 2 0 0 1-1.731-1ZM19 8.856L20.556 13h-3.112ZM19 16a2 2 0 0 1-1.731-1h3.454A2.02 2.02 0 0 1 19 16"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M22.964 13.823a1 1 0 0 0-.028-.175l-2.305-6.137A3 3 0 0 0 22 5a1 1 0 0 0-2 0a1 1 0 0 1-1.882.473A2.89 2.89 0 0 0 15.54 4H13V3a1 1 0 0 0-2 0v1H8.46a2.89 2.89 0 0 0-2.578 1.473A1 1 0 0 1 4 5a1 1 0 0 0-2 0a3 3 0 0 0 1.369 2.511l-2.305 6.137a1 1 0 0 0-.028.175A1 1 0 0 0 1 14l.003.027l.004.039a3.994 3.994 0 0 0 7.986 0l.004-.039L9 14a1 1 0 0 0-.036-.177a1 1 0 0 0-.028-.175L6.629 7.504A3 3 0 0 0 7.643 6.42A.92.92 0 0 1 8.46 6H11v14H8a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2h-3V6h2.54a.92.92 0 0 1 .817.42a3 3 0 0 0 1.014 1.084l-2.307 6.144a1 1 0 0 0-.028.175A1 1 0 0 0 15 14l.003.027l.004.039a3.994 3.994 0 0 0 7.986 0l.004-.039Q23 14.013 23 14a1 1 0 0 0-.036-.177M5 8.856L6.556 13H3.444ZM6.723 15A2.02 2.02 0 0 1 5 16a2 2 0 0 1-1.731-1ZM19 8.856L20.556 13h-3.112ZM19 16a2 2 0 0 1-1.731-1h3.454A2.02 2.02 0 0 1 19 16"/></svg>
</template>

CSS

.icon-balance-scale {
  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%22M22.964%2013.823a1%201%200%200%200-.028-.175l-2.305-6.137A3%203%200%200%200%2022%205a1%201%200%200%200-2%200a1%201%200%200%201-1.882.473A2.89%202.89%200%200%200%2015.54%204H13V3a1%201%200%200%200-2%200v1H8.46a2.89%202.89%200%200%200-2.578%201.473A1%201%200%200%201%204%205a1%201%200%200%200-2%200a3%203%200%200%200%201.369%202.511l-2.305%206.137a1%201%200%200%200-.028.175A1%201%200%200%200%201%2014l.003.027l.004.039a3.994%203.994%200%200%200%207.986%200l.004-.039L9%2014a1%201%200%200%200-.036-.177a1%201%200%200%200-.028-.175L6.629%207.504A3%203%200%200%200%207.643%206.42A.92.92%200%200%201%208.46%206H11v14H8a1%201%200%200%200%200%202h8a1%201%200%200%200%200-2h-3V6h2.54a.92.92%200%200%201%20.817.42a3%203%200%200%200%201.014%201.084l-2.307%206.144a1%201%200%200%200-.028.175A1%201%200%200%200%2015%2014l.003.027l.004.039a3.994%203.994%200%200%200%207.986%200l.004-.039Q23%2014.013%2023%2014a1%201%200%200%200-.036-.177M5%208.856L6.556%2013H3.444ZM6.723%2015A2.02%202.02%200%200%201%205%2016a2%202%200%200%201-1.731-1ZM19%208.856L20.556%2013h-3.112ZM19%2016a2%202%200%200%201-1.731-1h3.454A2.02%202.02%200%200%201%2019%2016%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%22M22.964%2013.823a1%201%200%200%200-.028-.175l-2.305-6.137A3%203%200%200%200%2022%205a1%201%200%200%200-2%200a1%201%200%200%201-1.882.473A2.89%202.89%200%200%200%2015.54%204H13V3a1%201%200%200%200-2%200v1H8.46a2.89%202.89%200%200%200-2.578%201.473A1%201%200%200%201%204%205a1%201%200%200%200-2%200a3%203%200%200%200%201.369%202.511l-2.305%206.137a1%201%200%200%200-.028.175A1%201%200%200%200%201%2014l.003.027l.004.039a3.994%203.994%200%200%200%207.986%200l.004-.039L9%2014a1%201%200%200%200-.036-.177a1%201%200%200%200-.028-.175L6.629%207.504A3%203%200%200%200%207.643%206.42A.92.92%200%200%201%208.46%206H11v14H8a1%201%200%200%200%200%202h8a1%201%200%200%200%200-2h-3V6h2.54a.92.92%200%200%201%20.817.42a3%203%200%200%200%201.014%201.084l-2.307%206.144a1%201%200%200%200-.028.175A1%201%200%200%200%2015%2014l.003.027l.004.039a3.994%203.994%200%200%200%207.986%200l.004-.039Q23%2014.013%2023%2014a1%201%200%200%200-.036-.177M5%208.856L6.556%2013H3.444ZM6.723%2015A2.02%202.02%200%200%201%205%2016a2%202%200%200%201-1.731-1ZM19%208.856L20.556%2013h-3.112ZM19%2016a2%202%200%200%201-1.731-1h3.454A2.02%202.02%200%200%201%2019%2016%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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