log icon
log-24 from Octicons by GitHub · 24 · MIT Free for personal and commercial use.
- Name
- log-24
- Set
- Octicons
- Style
- 24
- Viewbox
- 24×24
- License
- MIT
1 other variant in Octicons
The same icon in other sets
Use the log icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M9.197 10a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-2.382 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-1.581 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z"/><path fill="currentColor" d="M4.125 0h15.75a4.1 4.1 0 0 1 2.92 1.205A4.1 4.1 0 0 1 24 4.125c0 1.384-.476 2.794-1.128 4.16c-.652 1.365-1.515 2.757-2.352 4.104l-.008.013c-.849 1.368-1.669 2.691-2.28 3.97c-.614 1.283-.982 2.45-.982 3.503a2.625 2.625 0 1 0 4.083-2.183a.75.75 0 1 1 .834-1.247A4.126 4.126 0 0 1 19.875 24H4.5a4.125 4.125 0 0 1-4.125-4.125c0-2.234 1.258-4.656 2.59-6.902c.348-.586.702-1.162 1.05-1.728c.8-1.304 1.567-2.553 2.144-3.738H3.39c-.823 0-1.886-.193-2.567-1.035A3.65 3.65 0 0 1 0 4.125A4.125 4.125 0 0 1 4.125 0M15.75 19.875c0-1.38.476-2.786 1.128-4.15c.649-1.358 1.509-2.743 2.343-4.086l.017-.028c.849-1.367 1.669-2.692 2.28-3.972c.614-1.285.982-2.457.982-3.514A2.615 2.615 0 0 0 19.875 1.5a2.625 2.625 0 0 0-2.625 2.625c0 .865.421 1.509 1.167 2.009A.75.75 0 0 1 18 7.507H7.812c-.65 1.483-1.624 3.069-2.577 4.619c-.334.544-.666 1.083-.98 1.612c-1.355 2.287-2.38 4.371-2.38 6.137A2.625 2.625 0 0 0 4.5 22.5h12.193a4.1 4.1 0 0 1-.943-2.625M1.5 4.125c-.01.511.163 1.008.487 1.403c.254.313.74.479 1.402.479h12.86a3.65 3.65 0 0 1-.499-1.882a4.1 4.1 0 0 1 .943-2.625H4.125A2.625 2.625 0 0 0 1.5 4.125"/></svg>
React
import type { SVGProps } from "react";
export function OcticonLog24(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="M9.197 10a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-2.382 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-1.581 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z"/><path fill="currentColor" d="M4.125 0h15.75a4.1 4.1 0 0 1 2.92 1.205A4.1 4.1 0 0 1 24 4.125c0 1.384-.476 2.794-1.128 4.16c-.652 1.365-1.515 2.757-2.352 4.104l-.008.013c-.849 1.368-1.669 2.691-2.28 3.97c-.614 1.283-.982 2.45-.982 3.503a2.625 2.625 0 1 0 4.083-2.183a.75.75 0 1 1 .834-1.247A4.126 4.126 0 0 1 19.875 24H4.5a4.125 4.125 0 0 1-4.125-4.125c0-2.234 1.258-4.656 2.59-6.902c.348-.586.702-1.162 1.05-1.728c.8-1.304 1.567-2.553 2.144-3.738H3.39c-.823 0-1.886-.193-2.567-1.035A3.65 3.65 0 0 1 0 4.125A4.125 4.125 0 0 1 4.125 0M15.75 19.875c0-1.38.476-2.786 1.128-4.15c.649-1.358 1.509-2.743 2.343-4.086l.017-.028c.849-1.367 1.669-2.692 2.28-3.972c.614-1.285.982-2.457.982-3.514A2.615 2.615 0 0 0 19.875 1.5a2.625 2.625 0 0 0-2.625 2.625c0 .865.421 1.509 1.167 2.009A.75.75 0 0 1 18 7.507H7.812c-.65 1.483-1.624 3.069-2.577 4.619c-.334.544-.666 1.083-.98 1.612c-1.355 2.287-2.38 4.371-2.38 6.137A2.625 2.625 0 0 0 4.5 22.5h12.193a4.1 4.1 0 0 1-.943-2.625M1.5 4.125c-.01.511.163 1.008.487 1.403c.254.313.74.479 1.402.479h12.86a3.65 3.65 0 0 1-.499-1.882a4.1 4.1 0 0 1 .943-2.625H4.125A2.625 2.625 0 0 0 1.5 4.125"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M9.197 10a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-2.382 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-1.581 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z"/><path fill="currentColor" d="M4.125 0h15.75a4.1 4.1 0 0 1 2.92 1.205A4.1 4.1 0 0 1 24 4.125c0 1.384-.476 2.794-1.128 4.16c-.652 1.365-1.515 2.757-2.352 4.104l-.008.013c-.849 1.368-1.669 2.691-2.28 3.97c-.614 1.283-.982 2.45-.982 3.503a2.625 2.625 0 1 0 4.083-2.183a.75.75 0 1 1 .834-1.247A4.126 4.126 0 0 1 19.875 24H4.5a4.125 4.125 0 0 1-4.125-4.125c0-2.234 1.258-4.656 2.59-6.902c.348-.586.702-1.162 1.05-1.728c.8-1.304 1.567-2.553 2.144-3.738H3.39c-.823 0-1.886-.193-2.567-1.035A3.65 3.65 0 0 1 0 4.125A4.125 4.125 0 0 1 4.125 0M15.75 19.875c0-1.38.476-2.786 1.128-4.15c.649-1.358 1.509-2.743 2.343-4.086l.017-.028c.849-1.367 1.669-2.692 2.28-3.972c.614-1.285.982-2.457.982-3.514A2.615 2.615 0 0 0 19.875 1.5a2.625 2.625 0 0 0-2.625 2.625c0 .865.421 1.509 1.167 2.009A.75.75 0 0 1 18 7.507H7.812c-.65 1.483-1.624 3.069-2.577 4.619c-.334.544-.666 1.083-.98 1.612c-1.355 2.287-2.38 4.371-2.38 6.137A2.625 2.625 0 0 0 4.5 22.5h12.193a4.1 4.1 0 0 1-.943-2.625M1.5 4.125c-.01.511.163 1.008.487 1.403c.254.313.74.479 1.402.479h12.86a3.65 3.65 0 0 1-.499-1.882a4.1 4.1 0 0 1 .943-2.625H4.125A2.625 2.625 0 0 0 1.5 4.125"/></svg> </template>
CSS
.icon-log-24 {
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%22M9.197%2010a.75.75%200%200%200%200%201.5h6.5a.75.75%200%200%200%200-1.5zm-2.382%204a.75.75%200%200%200%200%201.5h6.5a.75.75%200%200%200%200-1.5zm-1.581%204a.75.75%200%200%200%200%201.5h6.5a.75.75%200%200%200%200-1.5z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4.125%200h15.75a4.1%204.1%200%200%201%202.92%201.205A4.1%204.1%200%200%201%2024%204.125c0%201.384-.476%202.794-1.128%204.16c-.652%201.365-1.515%202.757-2.352%204.104l-.008.013c-.849%201.368-1.669%202.691-2.28%203.97c-.614%201.283-.982%202.45-.982%203.503a2.625%202.625%200%201%200%204.083-2.183a.75.75%200%201%201%20.834-1.247A4.126%204.126%200%200%201%2019.875%2024H4.5a4.125%204.125%200%200%201-4.125-4.125c0-2.234%201.258-4.656%202.59-6.902c.348-.586.702-1.162%201.05-1.728c.8-1.304%201.567-2.553%202.144-3.738H3.39c-.823%200-1.886-.193-2.567-1.035A3.65%203.65%200%200%201%200%204.125A4.125%204.125%200%200%201%204.125%200M15.75%2019.875c0-1.38.476-2.786%201.128-4.15c.649-1.358%201.509-2.743%202.343-4.086l.017-.028c.849-1.367%201.669-2.692%202.28-3.972c.614-1.285.982-2.457.982-3.514A2.615%202.615%200%200%200%2019.875%201.5a2.625%202.625%200%200%200-2.625%202.625c0%20.865.421%201.509%201.167%202.009A.75.75%200%200%201%2018%207.507H7.812c-.65%201.483-1.624%203.069-2.577%204.619c-.334.544-.666%201.083-.98%201.612c-1.355%202.287-2.38%204.371-2.38%206.137A2.625%202.625%200%200%200%204.5%2022.5h12.193a4.1%204.1%200%200%201-.943-2.625M1.5%204.125c-.01.511.163%201.008.487%201.403c.254.313.74.479%201.402.479h12.86a3.65%203.65%200%200%201-.499-1.882a4.1%204.1%200%200%201%20.943-2.625H4.125A2.625%202.625%200%200%200%201.5%204.125%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%22M9.197%2010a.75.75%200%200%200%200%201.5h6.5a.75.75%200%200%200%200-1.5zm-2.382%204a.75.75%200%200%200%200%201.5h6.5a.75.75%200%200%200%200-1.5zm-1.581%204a.75.75%200%200%200%200%201.5h6.5a.75.75%200%200%200%200-1.5z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4.125%200h15.75a4.1%204.1%200%200%201%202.92%201.205A4.1%204.1%200%200%201%2024%204.125c0%201.384-.476%202.794-1.128%204.16c-.652%201.365-1.515%202.757-2.352%204.104l-.008.013c-.849%201.368-1.669%202.691-2.28%203.97c-.614%201.283-.982%202.45-.982%203.503a2.625%202.625%200%201%200%204.083-2.183a.75.75%200%201%201%20.834-1.247A4.126%204.126%200%200%201%2019.875%2024H4.5a4.125%204.125%200%200%201-4.125-4.125c0-2.234%201.258-4.656%202.59-6.902c.348-.586.702-1.162%201.05-1.728c.8-1.304%201.567-2.553%202.144-3.738H3.39c-.823%200-1.886-.193-2.567-1.035A3.65%203.65%200%200%201%200%204.125A4.125%204.125%200%200%201%204.125%200M15.75%2019.875c0-1.38.476-2.786%201.128-4.15c.649-1.358%201.509-2.743%202.343-4.086l.017-.028c.849-1.367%201.669-2.692%202.28-3.972c.614-1.285.982-2.457.982-3.514A2.615%202.615%200%200%200%2019.875%201.5a2.625%202.625%200%200%200-2.625%202.625c0%20.865.421%201.509%201.167%202.009A.75.75%200%200%201%2018%207.507H7.812c-.65%201.483-1.624%203.069-2.577%204.619c-.334.544-.666%201.083-.98%201.612c-1.355%202.287-2.38%204.371-2.38%206.137A2.625%202.625%200%200%200%204.5%2022.5h12.193a4.1%204.1%200%200%201-.943-2.625M1.5%204.125c-.01.511.163%201.008.487%201.403c.254.313.74.479%201.402.479h12.86a3.65%203.65%200%200%201-.499-1.882a4.1%204.1%200%200%201%20.943-2.625H4.125A2.625%202.625%200%200%200%201.5%204.125%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/octicon/log-24.svg?color=%231a73e8&size=48