{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFlashcards/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 IconFlashcards: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"flashcards, cards, pages\"><path d=\"M3.39194 11.7751C3.17545 9.71535 4.66969 7.87012 6.72942 7.65364L9.21572 7.39231C11.2754 7.17583 13.1207 8.67007 13.3372 10.7298L14.02 17.2261C14.2364 19.2859 12.7422 21.1311 10.6825 21.3476L8.19617 21.6089C6.13645 21.8254 4.29122 20.3311 4.07473 18.2714L3.39194 11.7751Z\" fill=\"currentColor\"/><path d=\"M10.7744 5.72983C10.9909 3.6701 12.8367 2.17545 14.8964 2.39194L17.3828 2.65365C19.4422 2.8703 20.936 4.71526 20.7197 6.77475L20.0371 13.2718C19.8204 15.3312 17.9754 16.825 15.916 16.6087L15.458 16.5599L14.8291 10.5726C14.5868 8.26958 12.8896 6.47246 10.747 5.99643L10.7744 5.72983Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFlashcards;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA4qB,EAA5qB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6RAA6R,KAAK,eAAc,CAAI,GAGtqB",
  "debugId": "53DFECF145FB909964756E2164756E21",
  "names": []
}