import React from 'react'; import { ClearIndicatorProps } from 'react-select'; import { Icon } from 'panel/common/ui'; import theme from 'panel/lib/theme'; export const CustomClearIndicator = = any, IsMulti extends boolean = false>( props: ClearIndicatorProps, ) => { const { hasValue, innerProps } = props; if (!hasValue) { return null; } return (
); };