{
  "version": 3,
  "sources": ["src/IconDispersion/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 IconDispersion: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-1-stroke-1.5-IconDispersion\"><Path d=\"M12 3.0001C12.4142 3.0001 12.7499 3.33597 12.75 3.7501V20.2501C12.75 20.6643 12.4142 21.0001 12 21.0001C11.5858 21.0001 11.25 20.6643 11.25 20.2501V3.7501C11.2501 3.33597 11.5858 3.0001 12 3.0001Z\" fill=\"currentColor\"/><Path d=\"M14.9111 16.0353C15.1678 15.7103 15.6398 15.6547 15.9648 15.9112L20.7148 19.6612C21.0399 19.9179 21.0954 20.3898 20.8389 20.7149C20.5822 21.04 20.1103 21.0956 19.7852 20.839L15.0352 17.089C14.7101 16.8323 14.6545 16.3603 14.9111 16.0353Z\" fill=\"currentColor\"/><Path d=\"M8.25 15.0001C8.66415 15.0001 8.9999 15.336 9 15.7501C9 16.1643 8.66421 16.5001 8.25 16.5001H2.75C2.33579 16.5001 2 16.1643 2 15.7501C2.0001 15.336 2.33585 15.0001 2.75 15.0001H8.25Z\" fill=\"currentColor\"/><Path d=\"M8.25 11.2501C8.66415 11.2501 8.9999 11.586 9 12.0001C9 12.4143 8.66421 12.7501 8.25 12.7501H2.75C2.33579 12.7501 2 12.4143 2 12.0001C2.0001 11.586 2.33585 11.2501 2.75 11.2501H8.25Z\" fill=\"currentColor\"/><Path d=\"M21.25 11.2501C21.6642 11.2501 21.9999 11.586 22 12.0001C22 12.4143 21.6642 12.7501 21.25 12.7501H15.75C15.3358 12.7501 15 12.4143 15 12.0001C15.0001 11.586 15.3358 11.2501 15.75 11.2501H21.25Z\" fill=\"currentColor\"/><Path d=\"M8.25 7.0001C8.66415 7.0001 8.9999 7.33597 9 7.7501C9 8.16431 8.66421 8.5001 8.25 8.5001H2.75C2.33579 8.5001 2 8.16431 2 7.7501C2.0001 7.33597 2.33585 7.0001 2.75 7.0001H8.25Z\" fill=\"currentColor\"/><Path d=\"M19.7852 3.16123C20.1102 2.9047 20.5822 2.96028 20.8389 3.28525C21.0955 3.61033 21.0399 4.08229 20.7148 4.33896L15.9648 8.08896C15.6397 8.3456 15.1678 8.29004 14.9111 7.96494C14.6546 7.63984 14.7101 7.16786 15.0352 6.91123L19.7852 3.16123Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDispersion;\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,gBAAmrD,EAAnrD,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yLAAyL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yLAAyL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kLAAkL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,CAAI,CAC3rD,EAEc",
  "debugId": "26CB4249D79BC9E164756E2164756E21",
  "names": []
}