Skip to content

Commit

Permalink
move no-gateways content into new component
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Apr 25, 2024
1 parent b46d347 commit a7f2dd6
Show file tree
Hide file tree
Showing 4 changed files with 396 additions and 372 deletions.
4 changes: 2 additions & 2 deletions src/nextapp/components/cli-command/cli-command.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { IoCopy } from 'react-icons/io5';
interface CliCommandProps {
id?: string;
title: string;
description: string;
description: React.ReactNode;
command: string;
}

Expand Down Expand Up @@ -52,7 +52,7 @@ const CliCommand: React.FC<CliCommandProps> = ({ id, title, description, command
alignItems="center"
justifyContent="space-between"
>
<Text fontFamily="mono">$ {command}</Text>
<Text fontFamily="mono" fontSize="sm">$ {command}</Text>
<Tooltip label="Copy to clipboard" aria-label="Copy to clipboard tooltip">
<IconButton
aria-label="Copy to clipboard"
Expand Down
Loading

0 comments on commit a7f2dd6

Please sign in to comment.