{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBookmarkPlus/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 IconBookmarkPlus: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bookmark-plus, banner, flag, tag\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.75 1.99542C4.7835 1.99542 4 2.77892 4 3.74542V20.0956C4 21.5058 5.58261 22.3368 6.74353 21.5362L11.8581 18.0089C11.9435 17.95 12.0565 17.95 12.1419 18.0089L17.2565 21.5362C18.4174 22.3368 20 21.5058 20 20.0956V3.74542C20 2.77892 19.2165 1.99542 18.25 1.99542H5.75ZM12 6C12.4142 6 12.75 6.33579 12.75 6.75V9.25H15.25C15.6642 9.25 16 9.58579 16 10C16 10.4142 15.6642 10.75 15.25 10.75H12.75V13.25C12.75 13.6642 12.4142 14 12 14C11.5858 14 11.25 13.6642 11.25 13.25V10.75H8.75C8.33579 10.75 8 10.4142 8 10C8 9.58579 8.33579 9.25 8.75 9.25H11.25V6.75C11.25 6.33579 11.5858 6 12 6Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBookmarkPlus;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAotB,EAAptB,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,skBAAskB,KAAK,eAAc,CAAI,GAG9sB",
  "debugId": "AA729BF101187AF364756E2164756E21",
  "names": []
}