significant refactor

This commit is contained in:
2025-08-30 01:42:23 -05:00
parent 7136f646a3
commit 052f53444e
106 changed files with 1994 additions and 1701 deletions

View File

@@ -14,17 +14,21 @@ const ListLink = ({ label, to, Icon }: ListLinkProps) => {
return (
<>
<NavLink
w='100%'
p='md'
component={'button'}
w="100%"
p="md"
component={"button"}
onClick={() => navigate({ to })}
label={<Text fw={500} size='md'>{label}</Text>}
leftSection={Icon && <Icon weight='bold' size={20} />}
label={
<Text fw={500} size="md">
{label}
</Text>
}
leftSection={Icon && <Icon weight="bold" size={20} />}
rightSection={<CaretRightIcon size={20} />}
/>
<Divider />
</>
)
}
);
};
export default ListLink;