{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHaptic/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHaptic: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconHaptic\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5808 9.58293C4.13406 9.80505 3.59631 10 3 10H2V8H3C3.16373 8 3.3829 7.94495 3.69041 7.79207C4.00057 7.63786 4.32306 7.42513 4.7082 7.16816C4.71972 7.16047 4.7313 7.15274 4.74295 7.14497C5.09745 6.90837 5.51085 6.63245 5.93482 6.41917C6.3749 6.19778 6.90825 6 7.5 6C8.0944 6 8.63029 6.19612 9.07426 6.41794C9.50667 6.63399 9.92615 6.91392 10.2846 7.15311L10.3071 7.16817C10.6935 7.42597 11.0149 7.63879 11.3235 7.79328C11.6297 7.94657 11.8438 8 12 8C12.1526 8 12.3643 7.94735 12.67 7.79385C12.9779 7.63922 13.2987 7.42636 13.6857 7.16816L13.7026 7.15691C14.0628 6.91652 14.4852 6.6347 14.9215 6.41738C15.3673 6.19536 15.9044 6 16.5 6C17.0907 6 17.623 6.19848 18.0615 6.41967C18.482 6.63182 18.893 6.90611 19.2459 7.14166C19.2592 7.15055 19.2724 7.15938 19.2856 7.16815C19.6702 7.42478 19.9932 7.63748 20.304 7.79158C20.612 7.94432 20.8333 8 21 8H22V10H21C20.4026 10 19.8638 9.80568 19.4156 9.58342C18.9736 9.36428 18.5472 9.07979 18.1843 8.83768L18.1756 8.83185C17.7878 8.5731 17.4676 8.36017 17.1607 8.20533C16.8558 8.05152 16.6475 8 16.5 8C16.3382 8 16.1203 8.05464 15.8132 8.20762C15.5034 8.3619 15.1812 8.57465 14.7958 8.83184L14.7641 8.85294C14.4086 9.09021 13.9937 9.36716 13.5675 9.58115C13.1264 9.80265 12.5924 10 12 10C11.4063 10 10.8711 9.80343 10.4282 9.58172C9.99817 9.36644 9.58036 9.08761 9.22302 8.84913L9.19709 8.83183C8.81106 8.57426 8.48939 8.36146 8.18036 8.20706C7.87378 8.05388 7.65829 8 7.5 8C7.34933 8 7.13898 8.05222 6.83362 8.20583C6.52608 8.36054 6.20553 8.57343 5.81823 8.83184L5.80453 8.84098C5.44324 9.08205 5.01933 9.3649 4.5808 9.58293ZM4.5808 17.5829C4.13406 17.805 3.59631 18 3 18H2V16H3C3.16373 16 3.3829 15.945 3.69041 15.7921C4.00057 15.6379 4.32306 15.4251 4.7082 15.1682C4.71972 15.1605 4.7313 15.1527 4.74295 15.145C5.09744 14.9084 5.51085 14.6325 5.93482 14.4192C6.3749 14.1978 6.90825 14 7.5 14C8.0944 14 8.63029 14.1961 9.07426 14.4179C9.50667 14.634 9.92616 14.9139 10.2846 15.1531L10.3071 15.1682C10.6935 15.426 11.0149 15.6388 11.3235 15.7933C11.6297 15.9466 11.8438 16 12 16C12.1526 16 12.3643 15.9473 12.67 15.7939C12.9779 15.6392 13.2987 15.4264 13.6857 15.1682L13.7026 15.1569C14.0628 14.9165 14.4852 14.6347 14.9215 14.4174C15.3673 14.1954 15.9044 14 16.5 14C17.0907 14 17.623 14.1985 18.0615 14.4197C18.482 14.6318 18.893 14.9061 19.2459 15.1417C19.2592 15.1505 19.2724 15.1594 19.2856 15.1681C19.6702 15.4248 19.9932 15.6375 20.304 15.7916C20.612 15.9443 20.8333 16 21 16H22V18H21C20.4026 18 19.8638 17.8057 19.4156 17.5834C18.9736 17.3643 18.5472 17.0798 18.1843 16.8377L18.1756 16.8319C17.7878 16.5731 17.4676 16.3602 17.1607 16.2053C16.8558 16.0515 16.6475 16 16.5 16C16.3382 16 16.1203 16.0546 15.8132 16.2076C15.5034 16.3619 15.1812 16.5747 14.7958 16.8318L14.7641 16.8529C14.4086 17.0902 13.9937 17.3672 13.5675 17.5811C13.1264 17.8027 12.5924 18 12 18C11.4063 18 10.8711 17.8034 10.4282 17.5817C9.99816 17.3664 9.58035 17.0876 9.223 16.8491L9.19709 16.8318C8.81106 16.5743 8.48939 16.3615 8.18036 16.2071C7.87378 16.0539 7.65829 16 7.5 16C7.34933 16 7.13898 16.0522 6.83362 16.2058C6.52608 16.3605 6.20553 16.5734 5.81823 16.8318L5.80455 16.841C5.44326 17.082 5.01934 17.3649 4.5808 17.5829Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconHaptic;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAwuG,EAAxuG,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mlGAAmlG,KAAK,eAAc,CAAI,EAChvG,EAEc",
  "debugId": "27FE165C274151EA64756E2164756E21",
  "names": []
}