Docker images / prepare-release (push) Successful in 7s
Docker images / backend-image (push) Successful in 2m1s
Docker images / frontend-image (push) Successful in 2m7s
Docker images / updater-image (push) Successful in 41s
Docker images / notify-webhook (push) Has been skipped
Docker images / publish-release (push) Successful in 8s
20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
import type { ReactNode } from "react"
|
|
import { Card } from "@/components/ui/card"
|
|
import { DATA_PAGE_CARD_CLASS } from "@/components/data-grids/shared/data-grid-layout"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
interface DataPageCardProps {
|
|
children: ReactNode
|
|
className?: string
|
|
}
|
|
|
|
function DataPageCard({ children, className }: DataPageCardProps) {
|
|
return (
|
|
<Card className={cn(DATA_PAGE_CARD_CLASS, className)}>
|
|
{children}
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
export { DataPageCard, type DataPageCardProps }
|