{"version":3,"sources":["../src/IconOpenQuote1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconOpenQuote1: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"open-quote-1,blockquote\">\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M9.397 6.27684L8.56522 6.83195C7.13802 7.78442 5.60796 8.80929 4.76429 10.3526C5.30142 10.1257 5.89186 10.0002 6.5117 10.0002C8.99594 10.0002 11.008 12.0159 11.008 14.5002C11.008 16.9845 8.99594 19.0002 6.5117 19.0002C4.03661 19.0002 2.03022 16.9993 2.01547 14.5276C1.79261 10.1533 3.99619 7.4767 7.45501 5.16839L8.28679 4.61328L9.397 6.27684ZM20.3854 6.27684L19.5536 6.83195C18.1264 7.78442 16.5964 8.80929 15.7527 10.3526C16.2898 10.1257 16.8803 10.0002 17.5001 10.0002C19.9844 10.0002 21.9964 12.0159 21.9964 14.5002C21.9964 16.9845 19.9844 19.0002 17.5001 19.0002C15.025 19.0002 13.0186 16.9993 13.0039 14.5276C12.781 10.1533 14.9846 7.4767 18.4434 5.16839L19.2752 4.61328L20.3854 6.27684ZM6.5117 12.0002C5.13401 12.0002 4.01538 13.1185 4.01538 14.5002C4.01538 15.8819 5.13401 17.0002 6.5117 17.0002C7.88938 17.0002 9.00801 15.8819 9.00801 14.5002C9.00801 13.1185 7.88938 12.0002 6.5117 12.0002ZM17.5001 12.0002C16.1224 12.0002 15.0038 13.1185 15.0038 14.5002C15.0038 15.8819 16.1224 17.0002 17.5001 17.0002C18.8778 17.0002 19.9964 15.8819 19.9964 14.5002C19.9964 13.1185 18.8778 12.0002 17.5001 12.0002Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconOpenQuote1;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ulCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconOpenQuote1","props","React","CentralIconBase","IconOpenQuote1_default"]}