{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRemoveBackground/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemoveBackground: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"remove-background\"><path d=\"M3.75 3H9.93934L3 9.93934V3.75C3 3.33579 3.33579 3 3.75 3Z\" fill=\"currentColor\"/><path d=\"M3 19.9393V12.0607L12.0607 3H19.9393L14.068 8.8713C13.4752 8.47866 12.7643 8.25 12 8.25C9.92893 8.25 8.25 9.92893 8.25 12C8.25 12.7643 8.47866 13.4752 8.8713 14.068L3 19.9393Z\" fill=\"currentColor\"/><path d=\"M14.0607 21H20.25C20.6642 21 21 20.6642 21 20.25V14.0607L14.0607 21Z\" fill=\"currentColor\"/><path d=\"M11.9393 21H4.06066L9.93196 15.1287C10.5248 15.5213 11.2357 15.75 12 15.75C14.0711 15.75 15.75 14.0711 15.75 12C15.75 11.2357 15.5213 10.5248 15.1287 9.93196L21 4.06066V11.9393L11.9393 21Z\" fill=\"currentColor\"/><path d=\"M9.75 12C9.75 10.7574 10.7574 9.75 12 9.75C13.2426 9.75 14.25 10.7574 14.25 12C14.25 13.2426 13.2426 14.25 12 14.25C10.7574 14.25 9.75 13.2426 9.75 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRemoveBackground;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA41B,EAA51B,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,6DAA6D,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kLAAkL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uEAAuE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+LAA+L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0JAA0J,KAAK,eAAc,CAAI,GAGt1B",
  "debugId": "CF6B292C5EFF948664756E2164756E21",
  "names": []
}