Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[draft] Mattupham/fe 785 portfolio recent withdrawals / deposits #3690

Draft
wants to merge 23 commits into
base: stage
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/web/components/buttons/link-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,24 @@ export function LinkButton({
ariaLabel,
href,
className: optionalClassNames,
size = "default",
}: {
label: string;
icon: ReactElement;
icon?: ReactElement;
ariaLabel: string;
href: string;
className?: string;
size?: "sm" | "md" | "default";
}) {
return (
<Button asChild variant="ghost">
<Button asChild variant="ghost" size={size}>
<Link
href={href}
passHref
aria-label={ariaLabel}
className={`flex flex-row gap-2 ${optionalClassNames ?? ""}`}
>
{icon}
{icon && icon}
<p className="text-base font-subtitle1 leading-6 tracking-wide text-osmoverse-200">
{label}
</p>
Expand Down
Loading
Loading