diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-08 21:44:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 21:44:49 +0100 |
commit | 701e508a1a5a99389242282a82973a3015070509 (patch) | |
tree | d438953b9d44c14fbf9f176cfa16aaab328fcc67 /src/view/com/util/List.tsx | |
parent | 750a5c899b31fec215064836be548aa71e83c82d (diff) | |
download | voidsky-701e508a1a5a99389242282a82973a3015070509.tar.zst |
add sideborders prop (#3920)
Diffstat (limited to 'src/view/com/util/List.tsx')
-rw-r--r-- | src/view/com/util/List.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx index 194f81c5c..0064a7b80 100644 --- a/src/view/com/util/List.tsx +++ b/src/view/com/util/List.tsx @@ -25,6 +25,7 @@ export type ListProps<ItemT> = Omit< onRefresh?: () => void onItemSeen?: (item: ItemT) => void containWeb?: boolean + sideBorders?: boolean } export type ListRef = React.MutableRefObject<FlatList_INTERNAL | null> |