{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTextToImage/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 IconTextToImage: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"text-to-image\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10 9H22V21H10V9ZM11.5 10.5V19.5H12.4393L18 13.9393L20.5 16.4393V10.5H11.5ZM20.5 18.5607L18 16.0607L14.5607 19.5H20.5V18.5607Z\" fill=\"currentColor\"/><path d=\"M15.5 13.25C15.5 13.9404 14.9404 14.5 14.25 14.5C13.5596 14.5 13 13.9404 13 13.25C13 12.5596 13.5596 12 14.25 12C14.9404 12 15.5 12.5596 15.5 13.25Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 3H11V5.5H9.5V4.5H6.75V12.5H8V14H4V12.5H5.25V4.5H2.5V5.5H1V3Z\" fill=\"currentColor\"/><path d=\"M19.5 2L18.6667 3.66667L17 4.5L18.6667 5.33333L19.5 7L20.3333 5.33333L22 4.5L20.3333 3.66667L19.5 2Z\" fill=\"currentColor\"/><path d=\"M15 4L14.3333 5.33333L13 6L14.3333 6.66667L15 8L15.6667 6.66667L17 6L15.6667 5.33333L15 4Z\" fill=\"currentColor\"/><path d=\"M4.5 17L3.66667 18.6667L2 19.5L3.66667 20.3333L4.5 22L5.33333 20.3333L7 19.5L5.33333 18.6667L4.5 17Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTextToImage;\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,gBAAu7B,EAAv7B,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kEAAkE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6FAA6F,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,CAAI,GAGj7B",
  "debugId": "D85361073736F70A64756E2164756E21",
  "names": []
}