{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBezierAdd/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </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\";\n\nexport const IconBezierAdd: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bezier-add, vector, nodes\" maskId=\"round-filled-radius-1-stroke-1.5-IconBezierAdd\"><path d=\"M12 9C12.4142 9 12.75 9.33579 12.75 9.75V11.25H14.25C14.6642 11.25 15 11.5858 15 12C15 12.4142 14.6642 12.75 14.25 12.75H12.75V14.25C12.75 14.6642 12.4142 15 12 15C11.5858 15 11.25 14.6642 11.25 14.25V12.75H9.75C9.33579 12.75 9 12.4142 9 12C9 11.5858 9.33579 11.25 9.75 11.25H11.25V9.75C11.25 9.33579 11.5858 9 12 9Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4.25C3 3.55964 3.55964 3 4.25 3H7.75C8.44036 3 9 3.55964 9 4.25V5.25H15V4.25C15 3.55964 15.5596 3 16.25 3H19.75C20.4404 3 21 3.55964 21 4.25V7.75C21 8.44036 20.4404 9 19.75 9H18.75V15H19.75C20.4404 15 21 15.5596 21 16.25V19.75C21 20.4404 20.4404 21 19.75 21H16.25C15.5596 21 15 20.4404 15 19.75V18.75H8.75V19.75C8.75 20.4404 8.19036 21 7.5 21H4.25C3.55964 21 3 20.4404 3 19.75V16.25C3 15.5596 3.55964 15 4.25 15H5.25V9H4.25C3.55964 9 3 8.44036 3 7.75V4.25ZM6.75 9V15H7.5C8.19036 15 8.75 15.5596 8.75 16.25V17.25H15V16.25C15 15.5596 15.5596 15 16.25 15H17.25V9H16.25C15.5596 9 15 8.44036 15 7.75V6.75H9V7.75C9 8.44036 8.44036 9 7.75 9H6.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBezierAdd;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAgqC,EAAhqC,IAAqB,EAAO,UAAU,4BAA4B,OAAO,kDAAiD,gBAAC,OAAD,CAAM,EAAE,+TAA+T,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qoBAAqoB,KAAK,eAAc,CAAI,EACxqC,EAEc",
  "debugId": "805586C2250B4E3A64756E2164756E21",
  "names": []
}