diff --git a/src/entries/popup/components/IconAndCopyList.tsx/IconAndCopyList.tsx b/src/entries/popup/components/IconAndCopyList.tsx/IconAndCopyList.tsx index 64a52896ae..308fd30629 100644 --- a/src/entries/popup/components/IconAndCopyList.tsx/IconAndCopyList.tsx +++ b/src/entries/popup/components/IconAndCopyList.tsx/IconAndCopyList.tsx @@ -1,14 +1,6 @@ import React from 'react'; -import { - Box, - Inline, - Row, - Rows, - Separator, - Symbol, - Text, -} from '~/design-system'; +import { Box, Inline, Separator, Stack, Symbol, Text } from '~/design-system'; import { SymbolProps } from '~/design-system/components/Symbol/Symbol'; export interface IconAndCopyItem { @@ -25,33 +17,32 @@ export function IconAndCopyList({ iconAndCopyList: IconAndCopyItem[]; }) { return ( - - {iconAndCopyList?.map(({ icon, copy }, i) => ( - <> - - - - - - - {copy} - - - - {i < iconAndCopyList.length - 1 && ( - - - - - - )} - + + + + } + > + {iconAndCopyList?.map(({ icon, copy }) => ( + + + + + + + {copy} + + + ))} - + ); }