/** * Spacing Primitives - Foundation * @generated 2025-12-12T06:29:16.107944 */ export default { title: 'Foundation/Spacing', tags: ['autodocs'], parameters: { docs: { description: { component: 'Spacing scale based on 4px grid. Use for margins, padding, and gaps.' } } } }; const styles = ` .spacing-grid { display: flex; flex-direction: column; gap: 0.25rem; max-width: 600px; } .spacing-item { display: flex; align-items: center; gap: 1rem; } .bar { height: 20px; background: var(--color-primary, #18181b); border-radius: 2px; min-width: 2px; } .info { display: flex; gap: 1rem; font-family: monospace; font-size: 0.75rem; } .name { font-weight: 600; min-width: 32px; } .value { color: #6b7280; min-width: 80px; } .comment { color: #9ca3af; font-size: 0.65rem; } `; export const SpacingScale = { render: () => `