{
  "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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.477 1.21096C11.7678 0.929681 12.2292 0.929681 12.5199 1.21096L14.7904 3.40738L17.9182 2.96497C18.3188 2.90831 18.6921 3.17954 18.762 3.57799L19.3078 6.68947L22.0983 8.17005C22.4557 8.35966 22.5983 8.79851 22.4206 9.16195L21.0333 12L22.4206 14.838C22.5983 15.2015 22.4557 15.6403 22.0983 15.8299L19.3078 17.3105L18.762 20.422C18.6921 20.8205 18.3188 21.0917 17.9182 21.035L14.7904 20.5926L12.5199 22.789C12.2292 23.0703 11.7678 23.0703 11.477 22.789L9.20656 20.5926L6.07871 21.035C5.67816 21.0917 5.30485 20.8205 5.23495 20.422L4.68916 17.3105L1.89863 15.8299C1.54127 15.6403 1.39868 15.2015 1.57634 14.838L2.96366 12L1.57634 9.16195C1.39868 8.79851 1.54127 8.35966 1.89863 8.17005L4.68916 6.68947L5.23495 3.57799C5.30485 3.17954 5.67816 2.90831 6.07871 2.96497L9.20656 3.40738L11.477 1.21096ZM13.2915 10.2202L11.9984 8L10.7053 10.2202L8.19419 10.7639L9.90609 12.6798L9.64727 15.2361L11.9984 14.2L14.3496 15.2361L14.0907 12.6798L15.8026 10.7639L13.2915 10.2202Z\" fill=\"currentColor\"/></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,gBAA6kC,EAA7kC,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u8BAAu8B,KAAK,eAAc,CAAI,GAGvkC",
  "debugId": "A9D3528D5BE660FF64756E2164756E21",
  "names": []
}