{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUnpin/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 IconUnpin: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"unpin\"><path d=\"M17.3343 18.3947L20.7197 21.7801C21.0126 22.073 21.4874 22.073 21.7803 21.7801C22.0732 21.4872 22.0732 21.0123 21.7803 20.7194L3.28033 2.21943C2.98744 1.92653 2.51256 1.92653 2.21967 2.21943C1.92678 2.51232 1.92678 2.98719 2.21967 3.28009L5.60501 6.66543C2.93172 7.33086 1.75444 10.8148 3.89529 12.9556L6.93937 15.9997L3.2197 19.7194C2.92681 20.0123 2.92681 20.4871 3.2197 20.78C3.5126 21.0729 3.98747 21.0729 4.28036 20.78L8.00003 17.0604L11.0441 20.1044C13.1849 22.2453 16.6689 21.068 17.3343 18.3947Z\" fill=\"currentColor\"/><path d=\"M18.8762 12.4982C18.0616 12.7698 17.485 13.4749 17.3622 14.3012L9.6985 6.63759C10.5248 6.51478 11.23 5.93814 11.5015 5.1235L11.7535 4.36755C12.6351 1.72292 15.9915 0.930563 17.9627 2.90175L21.098 6.03702C23.0692 8.00821 22.2768 11.3647 19.6322 12.2462L18.8762 12.4982Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconUnpin;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAm3B,EAAn3B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,0fAA0f,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,CAAI,GAG72B",
  "debugId": "305775F12CC1E7F964756E2164756E21",
  "names": []
}