import { cn } from "@heroui/react"
import type { ReactNode } from "react"
interface CardProps {
children?: ReactNode
className?: string
type?: string
onClick?: () => void
}
const Card = ({ children }: CardProps) => {
return (
{children}
)
}
const CardHeader = ({ children }: CardProps) => {
return (
{children}
)
}
const CardIcon = ({ children, type, className, ...rest }: CardProps) => {
return (
{children}
)
}
const CardTool = ({ children }: CardProps) => {
return (
{children}
)
}
const CardBody = ({ children }: CardProps) => {
return (
{children}
)
}
export { Card, CardHeader, CardIcon, CardTool, CardBody }