mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-31 11:56:11 +03:00
feat: implement most diagnostics actions
This commit is contained in:
32
fe-app-podkop/src/icons/renderCircleStopIcon24.ts
Normal file
32
fe-app-podkop/src/icons/renderCircleStopIcon24.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import { svgEl } from '../helpers';
|
||||
|
||||
export function renderCircleStopIcon24() {
|
||||
const NS = 'http://www.w3.org/2000/svg';
|
||||
return svgEl(
|
||||
'svg',
|
||||
{
|
||||
xmlns: NS,
|
||||
viewBox: '0 0 24 24',
|
||||
fill: 'none',
|
||||
stroke: 'currentColor',
|
||||
'stroke-width': '2',
|
||||
'stroke-linecap': 'round',
|
||||
'stroke-linejoin': 'round',
|
||||
class: 'lucide lucide-circle-stop-icon lucide-circle-stop',
|
||||
},
|
||||
[
|
||||
svgEl('circle', {
|
||||
cx: '12',
|
||||
cy: '12',
|
||||
r: '10',
|
||||
}),
|
||||
svgEl('rect', {
|
||||
x: '9',
|
||||
y: '9',
|
||||
width: '6',
|
||||
height: '6',
|
||||
rx: '1',
|
||||
}),
|
||||
],
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user