{
  "version": 3,
  "sources": ["src/IconHdr/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHdr: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconHdr\"><Path d=\"M11 19.5C11.2761 19.5 11.5 19.7239 11.5 20V22.5C11.5 22.7761 11.2761 23 11 23C10.7239 22.9999 10.5 22.7761 10.5 22.5V20C10.5 19.7239 10.7239 19.5001 11 19.5Z\" fill=\"currentColor\"/><Path d=\"M4.98926 17.3027C5.18441 17.1077 5.50103 17.1078 5.69629 17.3027C5.89152 17.498 5.89147 17.8145 5.69629 18.0098L3.92871 19.7783C3.73348 19.9733 3.41688 19.9734 3.22168 19.7783C3.02649 19.5831 3.02664 19.2666 3.22168 19.0713L4.98926 17.3027Z\" fill=\"currentColor\"/><Path d=\"M10.8984 7.97168C11.0697 7.75539 11.3841 7.71872 11.6006 7.88965C11.8172 8.06091 11.8539 8.37615 11.6826 8.59277C10.942 9.52973 10.5001 10.7126 10.5 12C10.5 13.2876 10.9419 14.4711 11.6826 15.4082C11.8539 15.6248 11.8172 15.9401 11.6006 16.1113C11.384 16.2823 11.0696 16.2448 10.8984 16.0283C10.0231 14.921 9.5 13.5207 9.5 12C9.5001 10.4793 10.023 9.07894 10.8984 7.97168Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16 5.5C19.5899 5.5 22.5 8.41015 22.5 12C22.5 15.5899 19.5899 18.5 16 18.5C15.1154 18.5 14.2719 18.3209 13.502 18C12.7317 18.3215 11.8868 18.5 11 18.5C7.41015 18.5 4.5 15.5899 4.5 12C4.5 8.41015 7.41015 5.5 11 5.5C11.8867 5.5 12.7318 5.67757 13.502 5.99902C14.2718 5.67819 15.1156 5.50005 16 5.5ZM11 6.5C7.96243 6.5 5.5 8.96243 5.5 12C5.5 15.0376 7.96243 17.5 11 17.5C14.0376 17.5 16.5 15.0376 16.5 12C16.5 8.96243 14.0376 6.5 11 6.5Z\" fill=\"currentColor\"/><Path d=\"M3 11.5C3.27614 11.5 3.5 11.7239 3.5 12C3.5 12.2761 3.27614 12.5 3 12.5H0.5C0.223858 12.5 0 12.2761 0 12C0 11.7239 0.223858 11.5 0.5 11.5H3Z\" fill=\"currentColor\"/><Path d=\"M3.22168 4.22168C3.41687 4.0265 3.73343 4.02663 3.92871 4.22168L5.85352 6.14648C6.04878 6.34174 6.04877 6.65825 5.85352 6.85352C5.65825 7.04871 5.34173 7.04875 5.14648 6.85352L3.22168 4.92871C3.02663 4.73344 3.0265 4.41688 3.22168 4.22168Z\" fill=\"currentColor\"/><Path d=\"M11 1C11.2761 1 11.5 1.22386 11.5 1.5V4.22168C11.5 4.49782 11.2761 4.72167 11 4.72168C10.7239 4.72163 10.5 4.49778 10.5 4.22168V1.5C10.5 1.22387 10.7239 1.00001 11 1Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconHdr;\n",
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={uniqueMaskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GDrFN,eAAS,yBAEF,IAAM,EAA4D,EAAM,KAAK,CAAC,IAC5E,gBAAwiE,EAAxiE,IAAqB,EAAO,OAAO,0CAAyC,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uXAAuX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qbAAqb,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+IAA+I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yKAAyK,KAAK,eAAc,CAAI,CAChjE,EAEc",
  "debugId": "34579818391557CE64756E2164756E21",
  "names": []
}