Skip to content

Commit

Permalink
fix: remove unused props from prev impl
Browse files Browse the repository at this point in the history
  • Loading branch information
thekidnamedkd committed Jan 24, 2024
1 parent 6827b52 commit 0116e15
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/components/link/link.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ export interface ILinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
* Icon displayed on the right side of the link. Accepts any icon from src/components/icon/iconList.ts.
*/
iconRight?: IconType;
/**
* Icon size. Width is auto assuming most are square icons.
*/
iconHeight?: number;
/**
* Whether the link is disabled.
*/
Expand Down
1 change: 0 additions & 1 deletion src/components/link/link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export const Link = React.forwardRef<HTMLAnchorElement, ILinkProps>(
disabled = false,
external = true,
variant = 'primary',
iconHeight = 12,
description,
label,
href,
Expand Down

0 comments on commit 0116e15

Please sign in to comment.