Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rol4nd909 committed May 23, 2024
1 parent f2e19c9 commit ddf6dd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type Props = PrimitiveButtonProps & {
className?: string;
};
const { className, children, hasIcon, href, ...rest } = Astro.props;
const { className, children, href, ...rest } = Astro.props;
---

<PrimitiveButton href={href} class:list={['btn', className]} type={href ? undefined : "button"} {...rest}>
Expand Down

0 comments on commit ddf6dd7

Please sign in to comment.