{
  "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\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2.5C13.7815 2.5 15.4252 2.72966 16.6484 3.12109C17.2554 3.31536 17.801 3.56301 18.2109 3.87305C18.6088 4.17406 19 4.63214 19 5.25C19 5.33649 18.9918 5.41976 18.9775 5.5H19V10.3477L20.8886 14.8125C21.4574 16.1569 21.5719 17.9998 20.1816 19.1523C18.789 20.3067 16.2985 21.5 12 21.5C7.70148 21.5 5.21092 20.3067 3.81833 19.1523C2.42804 17.9998 2.54255 16.1569 3.1113 14.8125L4.99997 10.3477V5.5H5.02243C5.00815 5.41976 4.99997 5.3365 4.99997 5.25C4.99997 4.63213 5.39116 4.17406 5.78903 3.87305C6.19899 3.56301 6.74453 3.31536 7.35153 3.12109C8.57476 2.72967 10.2184 2.5 12 2.5ZM17.7246 11.1836C17.4044 11.3554 17.0394 11.5038 16.6484 11.6289C15.4252 12.0203 13.7815 12.25 12 12.25C10.2184 12.25 8.57476 12.0203 7.35153 11.6289C6.96021 11.5037 6.59475 11.3556 6.27438 11.1836L4.49216 15.3975C4.03392 16.4807 4.13639 17.4673 4.77536 17.9971C5.85836 18.8949 7.99438 20 12 20C16.0056 20 18.1416 18.8949 19.2246 17.9971C19.8635 17.4673 19.966 16.4807 19.5078 15.3975L17.7246 11.1836ZM12 4C10.33 4 8.84834 4.21747 7.80954 4.5498C7.28587 4.71738 6.91579 4.90103 6.69333 5.06934C6.57692 5.15742 6.52813 5.21868 6.50876 5.25C6.52813 5.28132 6.57692 5.34258 6.69333 5.43066C6.91579 5.59897 7.28587 5.78262 7.80954 5.9502C8.84834 6.28253 10.33 6.5 12 6.5C13.6699 6.5 15.1516 6.28254 16.1904 5.9502C16.7141 5.78262 17.0842 5.59897 17.3066 5.43066C17.4225 5.34299 17.4707 5.28144 17.4902 5.25C17.4707 5.21856 17.4225 5.15701 17.3066 5.06934C17.0842 4.90103 16.7141 4.71738 16.1904 4.5498C15.1516 4.21746 13.6699 4 12 4Z\" fill=\"currentColor\"/></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,gBAAqmD,EAArmD,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u+CAAu+C,KAAK,eAAc,CAAI,GAG/lD",
  "debugId": "534091FB40966DAF64756E2164756E21",
  "names": []
}