/* eslint-disable react/prop-types */ import React from 'react'; import type { CSSProperties } from 'react'; import { spacing, Placeholder, css, cx } from '@mongodb-js/compass-components'; import { COLLECTION_ROW_HEIGHT } from './constants'; const placeholderItem = css({ display: 'flex', alignItems: 'center', height: COLLECTION_ROW_HEIGHT, }); // Padding should align the placeholder with icon at the start of the item, not // with the text after the icon const padding = { database: css({ paddingLeft: spacing[3] + spacing[1], }), collection: css({ paddingLeft: spacing[5] + spacing[1] + spacing[4], }), } as const; export const PlaceholderItem: React.FunctionComponent<{ type?: 'database' | 'collection'; style?: CSSProperties; }> = ({ type = 'collection', style }) => { return (
); };