{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPromptSuggestion/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 IconPromptSuggestion: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"prompt-suggestion, auto-prompt\"><path d=\"M18.2194 12.2804L10.4235 20.0763C10.149 20.3508 9.7911 20.5266 9.40595 20.5753L6.12763 20.9894C5.47967 21.0711 4.92859 20.5202 5.01045 19.8722L5.42451 16.5939C5.47329 16.2088 5.64905 15.8508 5.92353 15.5763L13.7194 7.78039L18.2194 12.2804Z\" fill=\"currentColor\"/><path d=\"M17.2624 4.23742C17.9457 3.55408 19.0536 3.55422 19.737 4.23742L21.7624 6.26281C22.4458 6.94623 22.4458 8.05401 21.7624 8.73742L19.28 11.2198L14.78 6.71984L17.2624 4.23742Z\" fill=\"currentColor\"/><path d=\"M7.25818 4.23127L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.74182 4.23127C4.65153 4.46602 4.46602 4.65153 4.23127 4.74182L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L4.23127 7.25818C4.46602 7.34847 4.65153 7.53398 4.74182 7.76873L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.25818 7.76873C7.34847 7.53398 7.53398 7.34847 7.76873 7.25818L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L7.76873 4.74182C7.53398 4.65153 7.34847 4.46602 7.25818 4.23127Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPromptSuggestion;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA2rC,EAA3rC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0nBAA0nB,KAAK,eAAc,CAAI,GAGrrC",
  "debugId": "A05EB403CF2C283864756E2164756E21",
  "names": []
}