{
  "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.07839 8.79143C3.03509 8.37949 3.33394 8.01044 3.74588 7.96715L12.1993 7.07865C12.6113 7.03536 12.9803 7.3342 13.0236 7.74615L14.3336 20.2096C14.3769 20.6216 14.078 20.9906 13.6661 21.0339L5.21264 21.9224C4.80069 21.9657 4.43165 21.6668 4.38835 21.2549L3.07839 8.79143Z\" fill=\"currentColor\"/><path d=\"M11.9131 2.07838L20.3662 2.96705C20.778 3.01043 21.0764 3.37943 21.0332 3.79127L19.7236 16.2551C19.6802 16.6669 19.3112 16.9654 18.8994 16.9221L15.458 16.5598L14.5156 7.58912L14.4795 7.36159C14.2617 6.31979 13.3368 5.5707 12.2725 5.57448L12.043 5.58717L10.7754 5.71998L11.0879 2.74635C11.1312 2.33441 11.5011 2.03509 11.9131 2.07838Z\" 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,gBAA+tB,EAA/tB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gVAAgV,KAAK,eAAc,CAAI,GAGztB",
  "debugId": "2F8D92D6EC16FFD864756E2164756E21",
  "names": []
}