{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageAttachment/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 IconPageAttachment: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"page-attachment\"><path d=\"M6.5 4.25C6.5 3.83579 6.83579 3.5 7.25 3.5C7.66421 3.5 8 3.83579 8 4.25V8.75C8 9.99264 6.99264 11 5.75 11C4.50736 11 3.5 9.99264 3.5 8.75V4.75C3.5 4.33579 3.16421 4 2.75 4C2.33579 4 2 4.33579 2 4.75V8.75C2 10.8211 3.67893 12.5 5.75 12.5C7.82107 12.5 9.5 10.8211 9.5 8.75V4.25C9.5 3.00736 8.49264 2 7.25 2C6.00736 2 5 3.00736 5 4.25V8.75C5 9.16421 5.33579 9.5 5.75 9.5C6.16421 9.5 6.5 9.16421 6.5 8.75V4.25Z\" fill=\"currentColor\"/><path d=\"M5.75 14C5.13639 14 4.54736 13.8947 4 13.7013V18.25C4 20.3211 5.67893 22 7.75 22H16.25C18.3211 22 20 20.3211 20 18.25V5.75C20 3.67893 18.3211 2 16.25 2H10.2503C10.721 2.62675 11 3.4058 11 4.25V8.75C11 11.6495 8.6495 14 5.75 14Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageAttachment;\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,gBAAmvB,EAAnvB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,yZAAyZ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sOAAsO,KAAK,eAAc,CAAI,GAG7uB",
  "debugId": "C12D853DB1D578B564756E2164756E21",
  "names": []
}