{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStamps/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 IconStamps: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"stamps, collection\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.75 3C3.7835 3 3 3.7835 3 4.75V6.42954C3 6.89367 3.18437 7.33878 3.51256 7.66697L3.82376 7.97817C4.33633 8.49074 4.33633 9.32176 3.82376 9.83433L3.51256 10.1455C3.18437 10.4737 3 10.9188 3 11.383V12.617C3 13.0812 3.18437 13.5263 3.51256 13.8545L3.82376 14.1657C4.08648 14.4284 4.21449 14.7733 4.20795 15.1188C4.20172 15.4474 4.0739 15.7717 3.82376 16.0218L3.51256 16.333C3.18437 16.6612 3 17.1063 3 17.5705V19.25C3 20.2165 3.7835 21 4.75 21H6.42954C6.89367 21 7.33878 20.8156 7.66697 20.4874L7.97817 20.1762C8.49074 19.6637 9.32176 19.6637 9.83433 20.1762L10.1455 20.4874C10.4737 20.8156 10.9188 21 11.383 21H12.617C13.0812 21 13.5263 20.8156 13.8545 20.4874L14.1657 20.1762C14.6782 19.6637 15.5093 19.6637 16.0218 20.1762L16.333 20.4874C16.6612 20.8156 17.1063 21 17.5705 21H19.25C20.2165 21 21 20.2165 21 19.25V17.5705C21 17.1063 20.8156 16.6612 20.4874 16.333L20.1762 16.0218C19.9549 15.8005 19.8297 15.5216 19.7992 15.2333C19.7587 14.8507 19.8848 14.4571 20.1762 14.1657L20.4874 13.8545C20.8156 13.5263 21 13.0812 21 12.617V11.383C21 10.9188 20.8156 10.4737 20.4874 10.1455L20.1762 9.83433C19.6637 9.32176 19.6637 8.49074 20.1762 7.97817L20.4874 7.66697C20.8156 7.33878 21 6.89367 21 6.42954V4.75C21 3.7835 20.2165 3 19.25 3H17.5705C17.1063 3 16.6612 3.18437 16.333 3.51256L16.0218 3.82376C15.5093 4.33633 14.6782 4.33633 14.1657 3.82376L13.8545 3.51256C13.5263 3.18437 13.0812 3 12.617 3H11.383C10.9188 3 10.4737 3.18437 10.1455 3.51256L9.83433 3.82376C9.32176 4.33633 8.49074 4.33633 7.97817 3.82376L7.66697 3.51256C7.33878 3.18437 6.89367 3 6.42954 3H4.75ZM14.7391 16.0456C15.8539 16.3501 17.088 16.4862 18.5217 16.2088C18.6587 16.5262 18.8567 16.8236 19.1156 17.0825L19.4268 17.3937C19.4737 17.4406 19.5 17.5042 19.5 17.5705V19.25C19.5 19.3881 19.3881 19.5 19.25 19.5H17.5705C17.5042 19.5 17.4406 19.4737 17.3937 19.4268L17.0825 19.1156C15.9841 18.0172 14.2034 18.0172 13.105 19.1156L12.7938 19.4268C12.7469 19.4737 12.6833 19.5 12.617 19.5H11.383C11.3167 19.5 11.2531 19.4737 11.2062 19.4268L10.895 19.1156C9.79664 18.0172 8.01586 18.0172 6.91751 19.1156L6.60631 19.4268C6.55943 19.4737 6.49584 19.5 6.42954 19.5H4.75C4.61193 19.5 4.5 19.3881 4.5 19.25V17.5705C4.5 17.5042 4.52634 17.4406 4.57322 17.3937L4.88442 17.0825C5.31778 16.6491 5.5803 16.1085 5.67164 15.5465C6.62164 14.8939 7.43344 14.5519 8.1481 14.3993C9.26096 14.1618 10.2343 14.3629 11.2754 14.7403C11.6655 14.8817 12.0467 15.0406 12.4511 15.2091C12.5994 15.2709 12.751 15.3341 12.9071 15.3981C13.4759 15.6313 14.085 15.8669 14.7391 16.0456ZM12 8C9.65279 8 7.75 9.90279 7.75 12.25C7.75 12.4845 7.76899 12.7146 7.80552 12.9388L7.83497 12.9324C9.33607 12.612 10.6175 12.9063 11.7866 13.3302C12.2127 13.4846 12.6417 13.6634 13.0562 13.8362L13.0573 13.8366C13.1989 13.8956 13.3387 13.9539 13.4762 14.0102C14.0296 14.2372 14.5707 14.4447 15.1344 14.5986C15.2495 14.6301 15.3656 14.6593 15.483 14.686C15.9664 13.9962 16.25 13.1562 16.25 12.25C16.25 9.90279 14.3472 8 12 8Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStamps;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAggG,EAAhgG,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,g4FAAg4F,KAAK,eAAc,CAAI,GAG1/F",
  "debugId": "7756DD2A937647A964756E2164756E21",
  "names": []
}