From 8dfd23f9ce85d3789b6328b453ebee55cb3d6726 Mon Sep 17 00:00:00 2001 From: Daniel <47092714+Daniel-dev22@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:20:15 -0400 Subject: [PATCH] CenterFocusString icon --- web/src/icons/CenterFocusStrong.jsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 web/src/icons/CenterFocusStrong.jsx 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);