You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
507 B
23 lines
507 B
2 years ago
|
import classNames from 'classnames';
|
||
|
import React from 'react';
|
||
|
import styles from './InteractiveImportRowCellPlaceholder.css';
|
||
|
|
||
|
interface InteractiveImportRowCellPlaceholderProps {
|
||
|
isOptional?: boolean;
|
||
|
}
|
||
|
|
||
|
function InteractiveImportRowCellPlaceholder(
|
||
|
props: InteractiveImportRowCellPlaceholderProps
|
||
|
) {
|
||
|
return (
|
||
|
<span
|
||
|
className={classNames(
|
||
|
styles.placeholder,
|
||
|
props.isOptional && styles.optional
|
||
|
)}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default InteractiveImportRowCellPlaceholder;
|