{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHashtag/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 IconHashtag: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hashtag, #\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.84025 3.00553C9.25145 3.05537 9.54439 3.42912 9.49455 3.84032L9.11155 7.00008H16.1006L16.5054 3.65983C16.5553 3.24862 16.929 2.95568 17.3402 3.00553C17.7515 3.05537 18.0444 3.42912 17.9946 3.84032L17.6116 7.00008H20.25C20.6642 7.00008 21 7.33586 21 7.75008C21 8.16429 20.6642 8.50008 20.25 8.50008H17.4297L16.5812 15.5001H20.25C20.6642 15.5001 21 15.8359 21 16.2501C21 16.6643 20.6642 17.0001 20.25 17.0001H16.3994L15.9946 20.3403C15.9447 20.7515 15.571 21.0445 15.1598 20.9946C14.7485 20.9448 14.4556 20.571 14.5054 20.1598L14.8884 17.0001H7.89943L7.49455 20.3403C7.44471 20.7515 7.07096 21.0445 6.65975 20.9946C6.24855 20.9448 5.95561 20.571 6.00545 20.1598L6.38845 17.0001H3.75C3.33579 17.0001 3 16.6643 3 16.2501C3 15.8359 3.33579 15.5001 3.75 15.5001H6.57027L7.41875 8.50008H3.75C3.33579 8.50008 3 8.16429 3 7.75008C3 7.33586 3.33579 7.00008 3.75 7.00008H7.60057L8.00545 3.65983C8.05529 3.24862 8.42904 2.95568 8.84025 3.00553ZM8.92973 8.50008L8.08125 15.5001H15.0703L15.9188 8.50008H8.92973Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHashtag;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAmmC,EAAnmC,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2+BAA2+B,KAAK,eAAc,CAAI,GAG7lC",
  "debugId": "326CE173798E7BB664756E2164756E21",
  "names": []
}