{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSubscriptionStar/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 IconSubscriptionStar: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"subscription-star,verify\"><path d=\"M11.9983 1.75L14.5323 4.20134L18.0231 3.70758L18.6323 7.18016L21.7467 8.83258L20.1983 12L21.7467 15.1674L18.6323 16.8198L18.0231 20.2924L14.5323 19.7987L11.9983 22.25L9.46439 19.7987L5.97353 20.2924L5.36439 16.8198L2.25 15.1674L3.79833 12L2.25 8.83258L5.36439 7.18016L5.97353 3.70758L9.46439 4.20134L11.9983 1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11.9995 8L13.2927 10.2202L15.8038 10.7639L14.0919 12.6798L14.3507 15.2361L11.9995 14.2L9.6484 15.2361L9.90721 12.6798L8.19531 10.7639L10.7064 10.2202L11.9995 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconSubscriptionStar;\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,gBAAqoB,EAAroB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,EAAE,4TAA4T,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oKAAoK,OAAO,eAAe,YAAY,MAAK,CAAI,GAG/nB",
  "debugId": "C32E3F1A59F6727F64756E2164756E21",
  "names": []
}