import React, { useContext } from 'react'; import { FieldContext } from '../../../Contexts'; import { XIcon } from '@heroicons/react/solid'; export default function Append(): JSX.Element | null { const context = useContext(FieldContext); return context.value ? ( ) : null; }