{"version":3,"sources":["../../../src/components/manual-ui/chip-with-icon.tsx"],"sourcesContent":["export interface ChipWithIconProps {\n  label: string;\n  onDelete: () => void;\n  iconUrl: string;\n}\n\nexport const ChipWithIcon = ({ label, onDelete, iconUrl }: ChipWithIconProps) => {\n  return (\n    <span className=\"inline-flex items-center px-3 py-1 rounded-full bg-slate-200 text-sm font-medium text-white\">\n      {iconUrl && <img src={iconUrl} alt=\"icon\" className=\"w-4 h-4 rounded-full mr-2\" />}\n      {label}\n      <button className=\"ml-2 text-white hover:text-gray-200 focus:outline-none\" onClick={onDelete}>\n        x\n      </button>\n    </span>\n  );\n};\n"],"mappings":";;;AAQI,SACc,KADd;AAFG,IAAM,eAAe,CAAC,EAAE,OAAO,UAAU,QAAQ,MAAyB;AAC/E,SACE,qBAAC,UAAK,WAAU,+FACb;AAAA,eAAW,oBAAC,SAAI,KAAK,SAAS,KAAI,QAAO,WAAU,6BAA4B;AAAA,IAC/E;AAAA,IACD,oBAAC,YAAO,WAAU,0DAAyD,SAAS,UAAU,eAE9F;AAAA,KACF;AAEJ;","names":[]}