import React, { FC } from 'react'; import { FaTrash } from 'react-icons/fa'; type Props = { label: string id: string onRemoveQuestion: Function } export const SelectedQuestionCard: FC = ({ label, id, onRemoveQuestion }) => { return (

{`# ${label ?? id}`}

) }