diff --git a/web/src/icons/CenterFocusStrong.jsx b/web/src/icons/CenterFocusStrong.jsx new file mode 100644 index 000000000..f1384a556 --- /dev/null +++ b/web/src/icons/CenterFocusStrong.jsx @@ -0,0 +1,21 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function CenterFocusString({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'none', onClick = () => {} }) { + return ( + + + + ); +} + +export default memo(CenterFocusString);