diff options
author | Eric Bailey <git@esb.lol> | 2024-03-12 13:50:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 13:50:53 -0500 |
commit | c9d821c5725f491f5ff4ac240b50e4dd325c9f49 (patch) | |
tree | 3ae6dee5c79dd84515524a593944f378752a32c6 /src/components/icons/DotGrid.tsx | |
parent | 812329919266924c1ea488669dc38aa106b79d71 (diff) | |
download | voidsky-c9d821c5725f491f5ff4ac240b50e4dd325c9f49.tar.zst |
Combine actions, convert to new menu (#3174)
* Combine actions, convert to new menu * remove about tab and move content to header * Tweak alignment * fix missing rkey * hog the like button * Add a little more whitespace * Improve a11y * Yeah toast * Update usage * Pin to Home --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/components/icons/DotGrid.tsx')
-rw-r--r-- | src/components/icons/DotGrid.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/icons/DotGrid.tsx b/src/components/icons/DotGrid.tsx new file mode 100644 index 000000000..c50d7a440 --- /dev/null +++ b/src/components/icons/DotGrid.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const DotGrid_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M2 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm16 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-6-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z', +}) |