{
  "version": 3,
  "sources": ["src/IconKeyboard/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 IconKeyboard: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconKeyboard\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 5C20.8807 5 22 6.11929 22 7.5V16.5C22 17.8807 20.8807 19 19.5 19H4.5C3.11929 19 2 17.8807 2 16.5V7.5C2 6.11929 3.11929 5 4.5 5H19.5ZM6.25 13.3496C5.89102 13.3496 5.59961 13.641 5.59961 14C5.59961 14.359 5.89102 14.6504 6.25 14.6504H6.61035C6.96918 14.6502 7.25977 14.3589 7.25977 14C7.25977 13.6411 6.96918 13.3498 6.61035 13.3496H6.25ZM9.95996 13.3496C9.60099 13.3496 9.30957 13.641 9.30957 14C9.30957 14.359 9.60099 14.6504 9.95996 14.6504H14.04C14.399 14.6504 14.6904 14.359 14.6904 14C14.6904 13.641 14.399 13.3496 14.04 13.3496H9.95996ZM17.3896 13.3496C17.0308 13.3498 16.7402 13.6411 16.7402 14C16.7402 14.3589 17.0308 14.6502 17.3896 14.6504H17.75C18.109 14.6504 18.4004 14.359 18.4004 14C18.4004 13.641 18.109 13.3496 17.75 13.3496H17.3896ZM6.25 9.34961C5.89102 9.34961 5.59961 9.64102 5.59961 10C5.59961 10.359 5.89102 10.6504 6.25 10.6504H6.61035C6.96918 10.6502 7.25977 10.3589 7.25977 10C7.25977 9.64113 6.96918 9.3498 6.61035 9.34961H6.25ZM9.95996 9.34961C9.60099 9.34963 9.30957 9.64103 9.30957 10C9.30957 10.359 9.60099 10.6504 9.95996 10.6504H10.3203C10.6792 10.6502 10.9697 10.3589 10.9697 10C10.9697 9.64112 10.6792 9.34978 10.3203 9.34961H9.95996ZM13.6797 9.34961C13.3208 9.34978 13.0303 9.64112 13.0303 10C13.0303 10.3589 13.3208 10.6502 13.6797 10.6504H14.04C14.399 10.6504 14.6904 10.359 14.6904 10C14.6904 9.64103 14.399 9.34963 14.04 9.34961H13.6797ZM17.3896 9.34961C17.0308 9.3498 16.7402 9.64113 16.7402 10C16.7402 10.3589 17.0308 10.6502 17.3896 10.6504H17.75C18.109 10.6504 18.4004 10.359 18.4004 10C18.4004 9.64102 18.109 9.34961 17.75 9.34961H17.3896Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconKeyboard;\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,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAA4sD,EAA5sD,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sjDAAsjD,KAAK,eAAc,CAAI,CACptD,EAEc",
  "debugId": "92CA88A46EDC41E664756E2164756E21",
  "names": []
}