Skip to content

Commit

Permalink
build files
Browse files Browse the repository at this point in the history
  • Loading branch information
Chakravarthy7102 committed Nov 14, 2023
1 parent e0e894d commit 30fb351
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/ui/components/button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function Button(props: ButtonProps) {
const { color = "primary", size = "md", className = "", isLoading, children, ...rest } = props;
return (
<button
className={`btn ${size} ${color}`}
className={`btn ${size} ${color} ${className}`}
{...rest}>
{children}
{isLoading ? <SpinnerIcon className="spinner" /> : null}
Expand Down

0 comments on commit 30fb351

Please sign in to comment.