import { TableCell } from '@/ui/layout/table/components/TableCell'; import { styled } from '@linaria/react'; import { MOBILE_VIEWPORT, themeCssVariables } from 'twenty-ui/theme-constants'; import React from 'react'; export const SETTINGS_OBJECT_TABLE_COLUMN_WIDTH = '98.7px'; export const SETTINGS_OBJECT_TABLE_ROW_GRID_TEMPLATE_COLUMNS = `180px ${SETTINGS_OBJECT_TABLE_COLUMN_WIDTH} ${SETTINGS_OBJECT_TABLE_COLUMN_WIDTH} ${SETTINGS_OBJECT_TABLE_COLUMN_WIDTH} 36px`; export const SETTINGS_OBJECT_TABLE_ROW_MOBILE_MIN_WIDTH = '520px'; export const StyledStickyFirstCell = styled.div` @media (max-width: ${MOBILE_VIEWPORT}px) { background: ${themeCssVariables.background.primary}; left: 0; position: sticky; z-index: 1; } `; export const StyledNameTableCell = ( props: React.ComponentProps, ) => ( ); export const StyledActionTableCell = ( props: React.ComponentProps, ) => ( );