Skip to content

Commit

Permalink
feat: Add Network Status
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielEmmanuel1 committed Dec 17, 2024
1 parent d5861eb commit 82b32a2
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { cssObj } from '@fuel-ui/css';
import { Alert, Box, Form, Input, Text } from '@fuel-ui/react';
import { Alert, Box, Form, HStack, Input, Text, VStack } from '@fuel-ui/react';
import { motion } from 'framer-motion';
import { type BN, bn } from 'fuels';
import { useEffect, useMemo, useRef, useState } from 'react';
Expand Down Expand Up @@ -204,6 +204,17 @@ export function SendSelect({
regularTip={regularTip}
fastTip={fastTip}
/>
<Text css={styles.title}>Network Status</Text>
<HStack gap="$3">
<VStack gap="$1">
<Text>Base fee</Text>
<Text fontSize="sm">0.01</Text>
</VStack>
<VStack gap="$1">
<Text>Condition</Text>
<Text fontSize="sm">Not Busy</Text>
</VStack>
</HStack>
</MotionStack>
)}
</Box.Stack>
Expand Down

0 comments on commit 82b32a2

Please sign in to comment.