Files
vpinball/components/ui/Panel.tsx
T

11 lines
279 B
TypeScript
Raw Normal View History

import type { HTMLAttributes } from "react";
export default function Panel({ className = "", ...props }: HTMLAttributes<HTMLDivElement>) {
return (
<div
className={`rounded-lg border border-chrome/30 bg-ash/80 shadow-lg ${className}`}
{...props}
/>
);
}