{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPerplexity/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 IconPerplexity: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"perplexity\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6 1.86861L11.4919 6.86861V2H12.4919V6.87084L18 1.87084V7.55655L20.2539 7.5567V16.0944H18V22.1884L12.4919 16.8011V22H11.4919V16.837L6.09401 22.1868L6.02703 16H3.5V7.55552L6 7.5557V1.86861ZM7 7.55577L10.7616 7.55604L7 4.1314V7.55577ZM10.7778 8.55604L4.5 8.55559V15H6.01621L5.99774 13.2938L10.7778 8.55604ZM11.4919 9.25623L7.00226 13.7062L7.06837 19.8132L11.4919 15.429V9.25623ZM12.4939 9.25572L12.5041 15.4143L17 19.8116V13.7088L12.4939 9.25572ZM13.2087 8.55621L18 13.2912V15.0944H19.2539V8.55663L13.2087 8.55621ZM13.2247 7.55621L17 7.55648V4.19678L16.9301 4.19261L13.2247 7.55621Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPerplexity;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA+rB,EAA/rB,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ukBAAukB,KAAK,eAAc,CAAI,GAGzrB",
  "debugId": "F4D83E98D0290A1164756E2164756E21",
  "names": []
}