ace #1

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

View File

@ -28,3 +28,27 @@ export function CardContent({ children, className = '' }: CardProps) {
</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>
)
}