several changes

This commit is contained in:
yohlo
2025-08-27 09:29:42 -05:00
parent 75479be334
commit 1eb621dd34
19 changed files with 140 additions and 330 deletions

View File

@@ -4,17 +4,17 @@ import { CaretRightIcon, Icon } from "@phosphor-icons/react";
interface ListButtonProps {
label: string;
Icon: Icon;
handleClick: () => void;
onClick: () => void;
}
const ListButton = ({ label, handleClick, Icon }: ListButtonProps) => {
const ListButton = ({ label, onClick, Icon }: ListButtonProps) => {
return (
<>
<UnstyledButton
w='100%'
p='md'
component={'button'}
onClick={handleClick}
onClick={onClick}
>
<Group>
<Icon weight='bold' size={20} />