{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconInputForm/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 IconInputForm: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"input-form, text-area, prompt, rename\"><path d=\"M8.25 3C8.66421 3 9 3.33579 9 3.75V20.25C9 20.6642 8.66421 21 8.25 21C7.83579 21 7.5 20.6642 7.5 20.25V3.75C7.5 3.33579 7.83579 3 8.25 3Z\" fill=\"currentColor\"/><path d=\"M6 18H2.75C2.33579 18 2 17.6642 2 17.25V6.75C2 6.33579 2.33579 6 2.75 6H6V18Z\" fill=\"currentColor\"/><path d=\"M21.25 6C21.6642 6 22 6.33579 22 6.75V17.25C22 17.6642 21.6642 18 21.25 18H10.5V6H21.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconInputForm;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA8d,EAA9d,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gFAAgF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2FAA2F,KAAK,eAAc,CAAI,GAGxd",
  "debugId": "896296C52E2E687364756E2164756E21",
  "names": []
}