{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBookmarkRemove/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 IconBookmarkRemove: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bookmark-remove, off\"><path d=\"M7.75 2C5.67893 2 4 3.67893 4 5.75V13.6282L1.49227 14.5456C1.10328 14.688 0.903302 15.1187 1.04562 15.5077C1.18793 15.8967 1.61865 16.0966 2.00765 15.9543L22.5076 8.45433C22.8966 8.31202 23.0966 7.8813 22.9543 7.4923C22.812 7.10331 22.3813 6.90333 21.9923 7.04565L20 7.77453V5.75C20 3.67893 18.3211 2 16.25 2H7.75Z\" fill=\"currentColor\"/><path d=\"M4 20.2515V16.8227L20 10.969V20.2515C20 21.6527 18.4353 22.4857 17.2728 21.7032L13.2564 18.9998C12.4968 18.4885 11.5032 18.4885 10.7436 18.9997L6.72719 21.7032C5.56475 22.4857 4 21.6527 4 20.2515Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBookmarkRemove;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAA6nB,EAA7nB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,EAAE,6TAA6T,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGvnB",
  "debugId": "2CAFA404E7C1FE9664756E2164756E21",
  "names": []
}