Skip to content

Commit

Permalink
Fix incorrect component imported
Browse files Browse the repository at this point in the history
  • Loading branch information
Vin Lim authored and kyranjamie committed Apr 15, 2024
1 parent d4779a0 commit b5a5c83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/pages/rpc-get-xpub/components/get-xpub.layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Box, Flex, styled } from 'leather-styles/jsx';

import { RequesterFlag } from '@app/components/requester-flag';
import { Button } from '@app/ui/components/button/button';
import { LeatherIcon } from '@app/ui/components/icons/leather-icon';
import { LeatherLIcon } from '@app/ui/components/icons/leather-l-icon';
import { LettermarkIcon } from '@app/ui/icons';
import { LogomarkIcon } from '@app/ui/icons/logomark-icon';

interface GetXpubLayoutProps {
requester: string;
Expand All @@ -23,15 +23,15 @@ export function GetXpubLayout(props: GetXpubLayoutProps) {
gap="space.06"
>
<Box mb="space.08" mt="space.11">
<LeatherIcon width="248px" height="58px" />
<LogomarkIcon width="248px" height="58px" />
</Box>
<styled.p textStyle="heading.03">Connect your account to</styled.p>

<RequesterFlag requester={requester} />
<Box width="100%" display="flex">
<Button onClick={() => onUserApproveGetXpub()} fullWidth>
<Flex justifyContent="center" alignItems="center">
<LeatherLIcon mr="space.02" />
<LettermarkIcon mr="space.02" />
<styled.span textStyle="label.02">Connect Leather</styled.span>
</Flex>
</Button>
Expand Down

0 comments on commit b5a5c83

Please sign in to comment.