Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
crupest committed Jul 12, 2023
1 parent 9711225 commit 9bbc209
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion FrontEnd/src/views/common/button/IconButton.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.cru-icon-button {
color: var(--cru-theme-color);
font-size: 1.4rem;
cursor: pointer;
background: none;
border: none;
}

.cru-icon-button.large {
Expand Down
2 changes: 1 addition & 1 deletion FrontEnd/src/views/common/button/IconButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function IconButton(props: IconButtonProps) {
const { icon, color, className, large, ...otherProps } = props;

return (
<i
<button
className={classNames(
"cru-icon-button",
large && "large",
Expand Down

0 comments on commit 9bbc209

Please sign in to comment.