Rename icon and make it smaller

This commit is contained in:
Daniel 2023-10-01 16:12:56 -04:00 committed by GitHub
parent b1482a93f4
commit 4e6aacfb4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
import { h } from 'preact'; import { h } from 'preact';
import { memo } from 'preact/compat'; import { memo } from 'preact/compat';
export function CenterFocusString({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'none', onClick = () => {} }) { export function SelectOnly({ className = 'h-5 w-5', stroke = 'currentColor', fill = 'none', onClick = () => {} }) {
return ( return (
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
@ -18,4 +18,4 @@ export function CenterFocusString({ className = 'h-6 w-6', stroke = 'currentColo
); );
} }
export default memo(CenterFocusString); export default memo(SelectOnly);