import * as React from 'react'
import { Paper, Box, Text } from '@mantine/core'
type CardVariant = 'default' | 'borderless' | 'ghost'
function Card({
className,
size = 'default',
variant = 'default',
children,
...props
}: React.ComponentProps<'div'> & { size?: 'default' | 'sm'; variant?: CardVariant }) {
return (
{children}
)
}
function CardHeader({ className, ...props }: React.ComponentProps<'div'>) {
return (
)
}
function CardTitle({ className, ...props }: React.ComponentProps<'div'>) {
return (
)
}
function CardDescription({ className, ...props }: React.ComponentProps<'div'>) {
return (
)
}
function CardAction({ className, style, ...props }: React.ComponentProps<'div'>) {
return (
)
}
function CardContent({ className, ...props }: React.ComponentProps<'div'>) {
return (
)
}
function CardFooter({ className, ...props }: React.ComponentProps<'div'>) {
return (
)
}
export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent }