diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-07 16:24:06 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-07 16:24:06 -0600 |
commit | e650d98924051abfee40ff956f7348e2e47e7cd7 (patch) | |
tree | 85f22717863eebe8942f6b66baf17b95dcbb9b90 /src/view/lib/icons.tsx | |
parent | d228a5f4f5d118f30129f3bafd676bfe0e80bf38 (diff) | |
download | voidsky-e650d98924051abfee40ff956f7348e2e47e7cd7.tar.zst |
Add search view; factor out SuggestedFollows component; add suggested follows to search
Diffstat (limited to 'src/view/lib/icons.tsx')
-rw-r--r-- | src/view/lib/icons.tsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/view/lib/icons.tsx b/src/view/lib/icons.tsx index bf4d242f0..b42fc6fc8 100644 --- a/src/view/lib/icons.tsx +++ b/src/view/lib/icons.tsx @@ -53,6 +53,33 @@ export function HomeIcon({ ) } +// Copyright (c) 2020 Refactoring UI Inc. +// https://github.com/tailwindlabs/heroicons/blob/master/LICENSE +export function MangifyingGlassIcon({ + style, + size, +}: { + style?: StyleProp<ViewStyle> + size?: string | number +}) { + return ( + <Svg + fill="none" + viewBox="0 0 24 24" + strokeWidth={2} + stroke="currentColor" + width={size || 24} + height={size || 24} + style={style}> + <Path + strokeLinecap="round" + strokeLinejoin="round" + d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z" + /> + </Svg> + ) +} + // https://github.com/Remix-Design/RemixIcon/blob/master/License export function BellIcon({ style, |