import React from 'react'; import { classes } from './CellViewLayout.st.css.js'; /** Shared wrapper that provides the default cell padding (9px 12px). * Standard cell types use this; types with custom layouts (e.g. URL) skip it. */ export const CellViewLayout: React.FC<{ children: React.ReactNode }> = ({ children, }) =>