ace #1

Open
dimitar wants to merge 42 commits from ace into master
Showing only changes of commit 918357c00c - Show all commits

View File

@ -27,4 +27,28 @@ export function CardContent({ children, className = '' }: CardProps) {
{children} {children}
</div> </div>
) )
}
export function CardTitle({ children, className = '' }: CardProps) {
return (
<h2 className={`text-lg font-semibold ${className}`}>
{children}
</h2>
)
}
export function CardDescription({ children, className = '' }: CardProps) {
return (
<p className={`text-sm text-gray-600 ${className}`}>
{children}
</p>
)
}
export function CardFooter({ children, className = '' }: CardProps) {
return (
<div className={`mt-4 ${className}`}>
{children}
</div>
)
} }