{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPreview/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 IconPreview: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"preview, details\"><ellipse cx=\"12\" cy=\"5.25\" rx=\"6.25\" ry=\"2\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M18.25 9.5C18.25 10.6046 15.4518 11.5 12 11.5C8.54822 11.5 5.75 10.6046 5.75 9.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M5.75 5.5V10.4997L3.80161 15.1052C3.28809 16.319 3.28215 17.7333 4.29681 18.5745C5.53457 19.6006 7.84776 20.75 12 20.75C16.1522 20.75 18.4654 19.6006 19.7032 18.5745C20.7179 17.7333 20.7119 16.319 20.1984 15.1052L18.25 10.4997V5.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconPreview;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA8iB,EAA9iB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,UAAD,CAAS,GAAG,KAAK,GAAG,OAAO,GAAG,OAAO,GAAG,IAAI,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,mFAAmF,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,yOAAyO,OAAO,eAAe,YAAY,MAAK,CAAI,GAGxiB",
  "debugId": "679412BF69BA60E264756E2164756E21",
  "names": []
}