{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScratchCard/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 IconScratchCard: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"scratch-card\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.75 4C2.7835 4 2 4.7835 2 5.75V18.25C2 19.2165 2.7835 20 3.75 20H20.25C21.2165 20 22 19.2165 22 18.25V5.75C22 4.7835 21.2165 4 20.25 4H3.75ZM11.5969 8.47282C11.6434 8.58985 11.6585 8.71162 11.646 8.82872L16.2694 8.01145C16.6396 7.94603 17.0009 8.16465 17.1148 8.52283C17.2286 8.88102 17.0598 9.26815 16.7198 9.42841L11.1067 12.0743L15.572 11.506C15.9268 11.4608 16.2641 11.6725 16.3778 12.0117C16.4915 12.3508 16.3498 12.7231 16.0394 12.9008L14.1868 13.9618L17.3387 13.2676C17.7432 13.1785 18.1433 13.4341 18.2324 13.8387C18.3215 14.2432 18.0659 14.6433 17.6613 14.7324L9.7169 16.4824C9.35511 16.5621 8.98933 16.3657 8.8559 16.0201C8.72246 15.6745 8.86134 15.2833 9.18281 15.0992L12.0292 13.469L6.59469 14.1607C6.22869 14.2072 5.88317 13.9807 5.77995 13.6265C5.67673 13.2723 5.84648 12.8956 6.18021 12.7383L11.0005 10.4661L6.63055 11.2386C6.25172 11.3055 5.88365 11.075 5.77854 10.7049C5.67343 10.3349 5.86536 9.94527 6.22282 9.8031L10.6228 8.0531C11.0077 7.90002 11.4438 8.08793 11.5969 8.47282Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScratchCard;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAmmC,EAAnmC,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,y+BAAy+B,KAAK,eAAc,CAAI,GAG7lC",
  "debugId": "69E798C60F239A4D64756E2164756E21",
  "names": []
}