import { type HTMLProps } from 'react'
import { Heading as AriaHeading } from 'react-aria-components'
import { cn } from '~/utils/cn'
function Title(properties: Parameters[0]) {
return (
)
}
function Text(properties: React.HTMLProps) {
return (
)
}
type Properties = HTMLProps & {
variant?: 'raised' | 'flat';
}
function Card(properties: Properties) {
return (
{properties.children}
)
}
export default Object.assign(Card, { Title, Text })