{
  "version": 3,
  "sources": ["src/IconBrightness/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 IconBrightness: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBrightness\"><Path d=\"M12.5 1.5C12.5 1.22386 12.2762 1 12 1C11.7239 1 11.5 1.22386 11.5 1.5V2.5C11.5 2.77614 11.7239 3 12 3C12.2762 3 12.5 2.77614 12.5 2.5V1.5Z\" fill=\"currentColor\"/><Path d=\"M4.92896 4.22183C4.73369 4.02656 4.41711 4.02656 4.22185 4.22183C4.02659 4.41709 4.02659 4.73367 4.22185 4.92893L4.96431 5.67139C5.15957 5.86666 5.47616 5.86666 5.67142 5.67139C5.86668 5.47613 5.86668 5.15955 5.67142 4.96429L4.92896 4.22183Z\" fill=\"currentColor\"/><Path d=\"M19.7782 4.92896C19.9735 4.73369 19.9735 4.41711 19.7782 4.22185C19.583 4.02659 19.2664 4.02659 19.0711 4.22185L18.3287 4.96431C18.1334 5.15957 18.1334 5.47616 18.3287 5.67142C18.5239 5.86668 18.8405 5.86668 19.0358 5.67142L19.7782 4.92896Z\" fill=\"currentColor\"/><Path d=\"M12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6Z\" fill=\"currentColor\"/><Path d=\"M1.5 11.5C1.22386 11.5 1 11.7239 1 12C1 12.2762 1.22386 12.5 1.5 12.5H2.5C2.77614 12.5 3 12.2762 3 12C3 11.7239 2.77614 11.5 2.5 11.5H1.5Z\" fill=\"currentColor\"/><Path d=\"M21.5 11.5C21.2239 11.5 21 11.7239 21 12C21 12.2762 21.2239 12.5 21.5 12.5H22.5C22.7761 12.5 23 12.2762 23 12C23 11.7239 22.7761 11.5 22.5 11.5H21.5Z\" fill=\"currentColor\"/><Path d=\"M19.0357 18.3286C18.8405 18.1333 18.5239 18.1333 18.3286 18.3286C18.1334 18.5239 18.1334 18.8404 18.3286 19.0357L19.0711 19.7782C19.2664 19.9734 19.5829 19.9734 19.7782 19.7782C19.9735 19.5829 19.9735 19.2663 19.7782 19.0711L19.0357 18.3286Z\" fill=\"currentColor\"/><Path d=\"M5.67144 19.0357C5.8667 18.8405 5.8667 18.5239 5.67144 18.3286C5.47618 18.1334 5.1596 18.1334 4.96434 18.3286L4.22187 19.0711C4.02661 19.2664 4.02661 19.5829 4.22187 19.7782C4.41714 19.9735 4.73372 19.9735 4.92898 19.7782L5.67144 19.0357Z\" fill=\"currentColor\"/><Path d=\"M12.5 21.5C12.5 21.2239 12.2762 21 12 21C11.7239 21 11.5 21.2239 11.5 21.5V22.5C11.5 22.7761 11.7239 23 12 23C12.2762 23 12.5 22.7761 12.5 22.5V21.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBrightness;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAAm+D,EAAn+D,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mHAAmH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,CAAI,CAC3+D,EAEc",
  "debugId": "2E501715D8067C5464756E2164756E21",
  "names": []
}