Skip to content

Commit

Permalink
LinkButton
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham committed Jun 4, 2024
1 parent 558b088 commit d03cab6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/web/components/buttons/link-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ReactElement } from "react";

import { Button } from "~/components/ui/button";

export default function LinkButton({
export function LinkButton({
label,
icon,
ariaLabel,
Expand Down
2 changes: 1 addition & 1 deletion packages/web/pages/assets/[denom].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { useEffect } from "react";
import { useUnmount } from "react-use";

import { Icon } from "~/components/assets";
import LinkButton from "~/components/buttons/link-button";
import { LinkButton } from "~/components/buttons/link-button";
import {
ChartUnavailable,
PriceChartHeader,
Expand Down
6 changes: 3 additions & 3 deletions packages/web/pages/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import { CreditCardIcon } from "~/components/assets/credit-card-icon";
import { GradientView } from "~/components/assets/gradient-view";
import { RightArrowIcon } from "~/components/assets/right-arrow-icon";
import { UnlockIcon } from "~/components/assets/unlock-icon";
import ClipboardButton from "~/components/buttons/clipboard-button";
import IconButton from "~/components/buttons/icon-button";
import LinkButton from "~/components/buttons/link-button";
import { ClipboardButton } from "~/components/buttons/clipboard-button";
import { IconButton } from "~/components/buttons/icon-button";
import { LinkButton } from "~/components/buttons/link-button";
import { SwitchWalletButton } from "~/components/buttons/switch-wallet";
import {
CheckboxSelect,
Expand Down
2 changes: 1 addition & 1 deletion packages/web/pages/transactions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Image from "next/image";
import { useRouter } from "next/router";
import { useEffect, useMemo, useState } from "react";

import LinkButton from "~/components/buttons/link-button";
import { LinkButton } from "~/components/buttons/link-button";
import { TransactionContent } from "~/components/transactions/transaction-content";
import {
TransactionDetailsModal,
Expand Down

0 comments on commit d03cab6

Please sign in to comment.