import React from "react"; import { X } from "react-feather"; import { ILabel } from "../../Interfaces/Kanban"; interface ChipProps { item: ILabel; removeLabel?: (label: ILabel) => void; } export default function Chip(props: ChipProps) { const { item, removeLabel } = props; return ( ); }