diff --git a/src/components/icons/Grip.tsx b/src/components/icons/Grip.tsx new file mode 100644 index 0000000000..c5c78a2031 --- /dev/null +++ b/src/components/icons/Grip.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Grip_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M 7.5 6 a 1.5 1.5 0 1 0 3 0 a 1.5 1.5 0 1 0 -3 0 M 13.5 6 a 1.5 1.5 0 1 0 3 0 a 1.5 1.5 0 1 0 -3 0 M 7.5 12 a 1.5 1.5 0 1 0 3 0 a 1.5 1.5 0 1 0 -3 0 M 13.5 12 a 1.5 1.5 0 1 0 3 0 a 1.5 1.5 0 1 0 -3 0 M 7.5 18 a 1.5 1.5 0 1 0 3 0 a 1.5 1.5 0 1 0 -3 0 M 13.5 18 a 1.5 1.5 0 1 0 3 0 a 1.5 1.5 0 1 0 -3 0', +}) diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 0c77d2ef43..f51c252809 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -53,7 +53,7 @@ import {Divider} from '#/components/Divider' import * as FeedCard from '#/components/FeedCard' import {SearchInput} from '#/components/forms/SearchInput' import {FilterTimeline_Stroke2_Corner0_Rounded as FilterTimeline} from '#/components/icons/FilterTimeline' -import {Menu_Stroke2_Corner0_Rounded as DragHandleIcon} from '#/components/icons/Menu' +import {Grip_Stroke2_Corner0_Rounded as DragHandleIcon} from '#/components/icons/Grip' import {Pin_Stroke2_Corner0_Rounded as PinIcon} from '#/components/icons/Pin' import {TimesLarge_Stroke2_Corner0_Rounded as XIcon} from '#/components/icons/Times' import * as Layout from '#/components/Layout'