'use client' // packages/ui/src/components/ds/DoubleBezelCard.tsx // High-End Agency / Awwwards-Tier Double-Bezel (Doppelrand) Enclosure Component // Outer Shell: Precision machined tray with outer radius & ambient hairline // Inner Core: Floating glass plate with concentric inner radius, specular highlight & blur import React from 'react' import { Box, type BoxProps } from '@mui/material' import { d3roPalette, d3roShadow, d3roRadius } from '../../theme' export interface DoubleBezelCardProps extends Omit { /** Outer padding between tray and core (default: 6px) */ bezelPadding?: number | string /** Whether the card shows an interactive lift / glow on hover */ interactive?: boolean /** Inner core padding (default: 3 / 24px) */ innerPadding?: number | string /** Content to render inside the inner core */ children?: React.ReactNode } export function DoubleBezelCard({ bezelPadding = '6px', interactive = false, innerPadding = 3, children, sx, ...boxProps }: DoubleBezelCardProps): React.ReactElement { return ( {/* Inner Core Container */} {children} ) }