{
  "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=\"M3.28033 2.21967C2.98744 1.92678 2.51256 1.92678 2.21967 2.21967C1.92678 2.51256 1.92678 2.98744 2.21967 3.28033L6.95736 8.01802L4.17818 8.81207C2.89518 9.17864 2.47798 10.7886 3.42151 11.7322L7.31444 15.6251L3.21977 19.7198C2.92687 20.0127 2.92687 20.4875 3.21977 20.7804C3.51266 21.0733 3.98753 21.0733 4.28043 20.7804L8.3751 16.6858L12.268 20.5787C13.2116 21.5222 14.8216 21.105 15.1881 19.822L15.9822 17.0428L20.7197 21.7803C21.0126 22.0732 21.4874 22.0732 21.7803 21.7803C22.0732 21.4874 22.0732 21.0126 21.7803 20.7197L3.28033 2.21967Z\" fill=\"currentColor\"/><path d=\"M17.1094 13.0977L16.898 13.8374L10.1628 7.10217L10.9025 6.89082C10.9653 6.87289 11.0186 6.83114 11.0509 6.77447L13.1993 3.01475C13.7718 2.01288 15.1403 1.82962 15.9562 2.64555L21.3546 8.04399C22.1706 8.85993 21.9873 10.2284 20.9855 10.8009L17.2257 12.9493C17.1691 12.9817 17.1273 13.0349 17.1094 13.0977Z\" 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,gBAA67B,EAA77B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,giBAAgiB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,CAAI,GAGv7B",
  "debugId": "658D2F6320466C0064756E2164756E21",
  "names": []
}