import { Center, StackProps, HStack, Text } from '@chakra-ui/layout';
import Link from 'next/link';
import { ReactNode } from 'react';
export function SidebarItem({
name,
active,
icon,
href,
}: {
name: ReactNode;
icon: ReactNode;
active: boolean;
href: string;
}) {
return (
{icon}
{name}
);
}
function CardItem({ active, href, ...props }: { href: string; active: boolean } & StackProps) {
return (
);
}