import React from 'react'; import ChevronDownIcon from 'herein-icon/chevron-down'; import type {ICascadeSelectSingleInputProps as Props} from './cascade-select-single-input.type'; import {CascadeSelectSingleInputStyle as S} from './cascade-select-single-input.style'; export const CascadeSelectSingleInputComponent: React.FC = ({ value, placeholder, onClick, }) => { return ( {!!value ? ( {value} ) : ( {placeholder} )} ); };