debug console icon
debug-console from Codicons by Microsoft Corporation · Regular · CC-BY-4.0 Attribution required.
- Name
- debug-console
- Set
- Codicons
- Style
- Regular
- Viewbox
- 24×24
- License
- CC BY 4.0
Related icons in Codicons
debug-alldebug-altdebug-alt-smalldebug-breakpoint-conditionaldebug-breakpoint-conditional-unverifieddebug-breakpoint-datadebug-breakpoint-data-unverifieddebug-breakpoint-functiondebug-breakpoint-function-unverifieddebug-breakpoint-logdebug-breakpoint-log-unverifieddebug-breakpoint-unsupporteddebug-connecteddebug-connected-compactdebug-continuedebug-continue-smalldebug-coveragedebug-disconnectdebug-disconnect-compactdebug-line-by-linedebug-pausedebug-rerundebug-restartdebug-restart-frame
Use the debug console icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M5.25 21h6.569l-.659.659a2.2 2.2 0 0 0-.513.841H5.25a3.753 3.753 0 0 1-3.75-3.75V5.25A3.754 3.754 0 0 1 5.25 1.5h13.5a3.754 3.754 0 0 1 3.75 3.75v6.885c-.264.093-.512.23-.726.417a4.5 4.5 0 0 0-.774-.891V5.25C21 4.01 19.99 3 18.75 3H5.25C4.01 3 3 4.01 3 5.25v13.5C3 19.99 4.01 21 5.25 21m-.531-3.219a.753.753 0 0 0 1.062 0l4.499-4.498a.75.75 0 0 0 0-1.061l-4.5-4.5a.75.75 0 0 0-1.061 1.06l3.969 3.97l-3.969 3.969a.75.75 0 0 0 0 1.06M22.5 19.5c0 .576-.11 1.125-.308 1.632l1.589 1.588a.75.75 0 0 1-1.062 1.061l-1.328-1.328a4.492 4.492 0 0 1-6.782 0l-1.328 1.328a.753.753 0 0 1-1.062 0a.75.75 0 0 1 0-1.06l1.588-1.589A4.5 4.5 0 0 1 13.5 19.5h-.75a.75.75 0 0 1 0-1.5h.75v-1.94l-1.281-1.28a.75.75 0 0 1 1.06-1.061L14.56 15H15c0-1.655 1.346-3 3-3s3 1.345 3 3h.44l1.28-1.281a.75.75 0 0 1 1.061 1.06L22.5 16.062V18h.75a.75.75 0 0 1 0 1.5zm-6-4.5h3a1.5 1.5 0 0 0-3 0m4.5 1.5h-6v3c0 1.654 1.346 3 3 3s3-1.346 3-3z"/></svg>
React
import type { SVGProps } from "react";
export function CodiconDebugConsole(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="M5.25 21h6.569l-.659.659a2.2 2.2 0 0 0-.513.841H5.25a3.753 3.753 0 0 1-3.75-3.75V5.25A3.754 3.754 0 0 1 5.25 1.5h13.5a3.754 3.754 0 0 1 3.75 3.75v6.885c-.264.093-.512.23-.726.417a4.5 4.5 0 0 0-.774-.891V5.25C21 4.01 19.99 3 18.75 3H5.25C4.01 3 3 4.01 3 5.25v13.5C3 19.99 4.01 21 5.25 21m-.531-3.219a.753.753 0 0 0 1.062 0l4.499-4.498a.75.75 0 0 0 0-1.061l-4.5-4.5a.75.75 0 0 0-1.061 1.06l3.969 3.97l-3.969 3.969a.75.75 0 0 0 0 1.06M22.5 19.5c0 .576-.11 1.125-.308 1.632l1.589 1.588a.75.75 0 0 1-1.062 1.061l-1.328-1.328a4.492 4.492 0 0 1-6.782 0l-1.328 1.328a.753.753 0 0 1-1.062 0a.75.75 0 0 1 0-1.06l1.588-1.589A4.5 4.5 0 0 1 13.5 19.5h-.75a.75.75 0 0 1 0-1.5h.75v-1.94l-1.281-1.28a.75.75 0 0 1 1.06-1.061L14.56 15H15c0-1.655 1.346-3 3-3s3 1.345 3 3h.44l1.28-1.281a.75.75 0 0 1 1.061 1.06L22.5 16.062V18h.75a.75.75 0 0 1 0 1.5zm-6-4.5h3a1.5 1.5 0 0 0-3 0m4.5 1.5h-6v3c0 1.654 1.346 3 3 3s3-1.346 3-3z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M5.25 21h6.569l-.659.659a2.2 2.2 0 0 0-.513.841H5.25a3.753 3.753 0 0 1-3.75-3.75V5.25A3.754 3.754 0 0 1 5.25 1.5h13.5a3.754 3.754 0 0 1 3.75 3.75v6.885c-.264.093-.512.23-.726.417a4.5 4.5 0 0 0-.774-.891V5.25C21 4.01 19.99 3 18.75 3H5.25C4.01 3 3 4.01 3 5.25v13.5C3 19.99 4.01 21 5.25 21m-.531-3.219a.753.753 0 0 0 1.062 0l4.499-4.498a.75.75 0 0 0 0-1.061l-4.5-4.5a.75.75 0 0 0-1.061 1.06l3.969 3.97l-3.969 3.969a.75.75 0 0 0 0 1.06M22.5 19.5c0 .576-.11 1.125-.308 1.632l1.589 1.588a.75.75 0 0 1-1.062 1.061l-1.328-1.328a4.492 4.492 0 0 1-6.782 0l-1.328 1.328a.753.753 0 0 1-1.062 0a.75.75 0 0 1 0-1.06l1.588-1.589A4.5 4.5 0 0 1 13.5 19.5h-.75a.75.75 0 0 1 0-1.5h.75v-1.94l-1.281-1.28a.75.75 0 0 1 1.06-1.061L14.56 15H15c0-1.655 1.346-3 3-3s3 1.345 3 3h.44l1.28-1.281a.75.75 0 0 1 1.061 1.06L22.5 16.062V18h.75a.75.75 0 0 1 0 1.5zm-6-4.5h3a1.5 1.5 0 0 0-3 0m4.5 1.5h-6v3c0 1.654 1.346 3 3 3s3-1.346 3-3z"/></svg> </template>
CSS
.icon-debug-console {
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%22M5.25%2021h6.569l-.659.659a2.2%202.2%200%200%200-.513.841H5.25a3.753%203.753%200%200%201-3.75-3.75V5.25A3.754%203.754%200%200%201%205.25%201.5h13.5a3.754%203.754%200%200%201%203.75%203.75v6.885c-.264.093-.512.23-.726.417a4.5%204.5%200%200%200-.774-.891V5.25C21%204.01%2019.99%203%2018.75%203H5.25C4.01%203%203%204.01%203%205.25v13.5C3%2019.99%204.01%2021%205.25%2021m-.531-3.219a.753.753%200%200%200%201.062%200l4.499-4.498a.75.75%200%200%200%200-1.061l-4.5-4.5a.75.75%200%200%200-1.061%201.06l3.969%203.97l-3.969%203.969a.75.75%200%200%200%200%201.06M22.5%2019.5c0%20.576-.11%201.125-.308%201.632l1.589%201.588a.75.75%200%200%201-1.062%201.061l-1.328-1.328a4.492%204.492%200%200%201-6.782%200l-1.328%201.328a.753.753%200%200%201-1.062%200a.75.75%200%200%201%200-1.06l1.588-1.589A4.5%204.5%200%200%201%2013.5%2019.5h-.75a.75.75%200%200%201%200-1.5h.75v-1.94l-1.281-1.28a.75.75%200%200%201%201.06-1.061L14.56%2015H15c0-1.655%201.346-3%203-3s3%201.345%203%203h.44l1.28-1.281a.75.75%200%200%201%201.061%201.06L22.5%2016.062V18h.75a.75.75%200%200%201%200%201.5zm-6-4.5h3a1.5%201.5%200%200%200-3%200m4.5%201.5h-6v3c0%201.654%201.346%203%203%203s3-1.346%203-3z%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%22M5.25%2021h6.569l-.659.659a2.2%202.2%200%200%200-.513.841H5.25a3.753%203.753%200%200%201-3.75-3.75V5.25A3.754%203.754%200%200%201%205.25%201.5h13.5a3.754%203.754%200%200%201%203.75%203.75v6.885c-.264.093-.512.23-.726.417a4.5%204.5%200%200%200-.774-.891V5.25C21%204.01%2019.99%203%2018.75%203H5.25C4.01%203%203%204.01%203%205.25v13.5C3%2019.99%204.01%2021%205.25%2021m-.531-3.219a.753.753%200%200%200%201.062%200l4.499-4.498a.75.75%200%200%200%200-1.061l-4.5-4.5a.75.75%200%200%200-1.061%201.06l3.969%203.97l-3.969%203.969a.75.75%200%200%200%200%201.06M22.5%2019.5c0%20.576-.11%201.125-.308%201.632l1.589%201.588a.75.75%200%200%201-1.062%201.061l-1.328-1.328a4.492%204.492%200%200%201-6.782%200l-1.328%201.328a.753.753%200%200%201-1.062%200a.75.75%200%200%201%200-1.06l1.588-1.589A4.5%204.5%200%200%201%2013.5%2019.5h-.75a.75.75%200%200%201%200-1.5h.75v-1.94l-1.281-1.28a.75.75%200%200%201%201.06-1.061L14.56%2015H15c0-1.655%201.346-3%203-3s3%201.345%203%203h.44l1.28-1.281a.75.75%200%200%201%201.061%201.06L22.5%2016.062V18h.75a.75.75%200%200%201%200%201.5zm-6-4.5h3a1.5%201.5%200%200%200-3%200m4.5%201.5h-6v3c0%201.654%201.346%203%203%203s3-1.346%203-3z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/codicon/debug-console.svg?color=%231a73e8&size=48