mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-14 17:54:44 +08:00
14 lines
250 B
Go
14 lines
250 B
Go
![]() |
/**
|
||
|
* @description 自定义 loading svg
|
||
|
*/
|
||
|
export const loadingSvg = `
|
||
|
<path class="path" d="
|
||
|
M 30 15
|
||
|
L 28 17
|
||
|
M 25.61 25.61
|
||
|
A 15 15, 0, 0, 1, 15 30
|
||
|
A 15 15, 0, 1, 1, 27.99 7.5
|
||
|
L 15 15
|
||
|
" style="stroke-width: 4px; fill: rgba(0, 0, 0, 0)"/>
|
||
|
`;
|