Files
defiQUG 654933cb36
Some checks failed
Deploy Explorer Live / deploy (push) Failing after 13s
fix(explorer): normalize token market liquidityUsd client-side
- Mirror token-aggregation liquidity scaling in tokenAggregation API layer
- Tokens page and shared brand/layout tweaks
- deploy-live workflow adjustment

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-11 12:55:08 -07:00

27 lines
590 B
TypeScript

import { ReactNode } from 'react'
import clsx from 'clsx'
interface CardProps {
children: ReactNode
className?: string
title?: string
}
export function Card({ children, className, title }: CardProps) {
return (
<div
className={clsx(
'rounded-lg border border-gray-200 bg-white p-4 shadow-sm dark:border-gray-800 dark:bg-gray-900/70 sm:p-5',
className
)}
>
{title && (
<h3 className="mb-3 text-base font-semibold text-gray-900 dark:text-white sm:text-lg">
{title}
</h3>
)}
{children}
</div>
)
}