Visit camera directly from system page (#8405)

* Visit camera directly from system page

* Processed all feedback

* Changed button caption
This commit is contained in:
tpjanssen
2023-11-01 14:08:59 +01:00
committed by GitHub
parent fd6a3bd5d2
commit 8a9b26df4e
5 changed files with 41 additions and 1 deletions

21
web/src/icons/WebUI.jsx Normal file
View File

@@ -0,0 +1,21 @@
import { h } from 'preact';
import { memo } from 'preact/compat';
export function WebUI({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'none', onClick = () => {} }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
className={className}
fill={fill}
viewBox="0 0 24 24"
stroke={stroke}
onClick={onClick}
>
<path
d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"
/>
</svg>
);
}
export default memo(WebUI);