diff --git a/src/components/@molecules/NameListView/NameListView.tsx b/src/components/@molecules/NameListView/NameListView.tsx index 33558f457..a77d3dbf9 100644 --- a/src/components/@molecules/NameListView/NameListView.tsx +++ b/src/components/@molecules/NameListView/NameListView.tsx @@ -43,6 +43,16 @@ const TabWrapperWithButtons = styled(TabWrapper)( `, ) +const Footer = styled.div( + ({ theme }) => css` + display: flex; + align-items: center; + justify-content: center; + height: ${theme.space['8']}; + border-top: 1px solid ${theme.colors.border}; + `, +) + type NameListViewProps = { address: Address | undefined isSelf: boolean @@ -209,6 +219,7 @@ export const NameListView = ({ address, isSelf, setError, setLoading }: NameList )}