import { type CSSProperties } from 'react'; import { css } from 'styled-system/css'; // ── Pre-declared css() calls — Panda CSS statically extracts these ───────── const spacingWidthClasses: Record = { none: css({ width: 'none' }), xxs: css({ width: 'xxs' }), xs: css({ width: 'xs' }), sm: css({ width: 'sm' }), md: css({ width: 'md' }), lg: css({ width: 'lg' }), xl: css({ width: 'xl' }), xxl: css({ width: 'xxl' }), xxxl: css({ width: 'xxxl' }), }; interface SpacingBoxProps { name: string; value: string; } export const SpacingBox = ({ name, value }: SpacingBoxProps) => { const containerStyle: CSSProperties = { display: 'flex', alignItems: 'center', marginBottom: '24px', gap: '16px', }; const labelContainerStyle: CSSProperties = { minWidth: '120px', display: 'flex', flexDirection: 'column', }; const nameStyle: CSSProperties = { fontSize: '14px', fontWeight: '500', fontFamily: 'Inter, sans-serif', marginBottom: '4px', }; const valueStyle: CSSProperties = { fontSize: '12px', fontFamily: 'monospace', color: '#666', }; const boxContainerStyle: CSSProperties = { display: 'flex', alignItems: 'center', flex: 1, }; const boxStyle: CSSProperties = { height: '40px', backgroundColor: '#4C662B', borderRadius: '4px', position: 'relative', }; const dimensionStyle: CSSProperties = { position: 'absolute', top: '-20px', left: '0', right: '0', fontSize: '10px', fontFamily: 'monospace', color: '#999', textAlign: 'center', }; return (
{name}
{value}
{value}
); }; interface SpacingGridProps { spacings: Record; } export const SpacingGrid = ({ spacings }: SpacingGridProps) => { const gridStyle: CSSProperties = { display: 'grid', gridTemplateColumns: 'repeat(auto-fill, minmax(250px, 1fr))', gap: '32px', marginTop: '24px', }; return (
{Object.entries(spacings).map(([name, value]) => ( ))}
); };