{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPasswordStars/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\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  ...props\n}) => {\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      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPasswordStars: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"password-stars\"><path d=\"M22.25 16.5C22.6642 16.5 23 16.8358 23 17.25C23 17.6642 22.6642 18 22.25 18H1.75C1.33579 18 1 17.6642 1 17.25C1.00002 16.8358 1.3358 16.5 1.75 16.5H22.25Z\" fill=\"currentColor\"/><path d=\"M4.52539 7.62502C4.73252 7.26639 5.19112 7.14353 5.5498 7.35061C5.9085 7.55772 6.0313 8.01631 5.82422 8.37502L5.34863 9.19826H6.2998C6.7139 9.19826 7.04962 9.53421 7.0498 9.94826C7.0498 10.3625 6.71402 10.6983 6.2998 10.6983H5.34863L5.82422 11.5225C6.03115 11.8812 5.90844 12.3398 5.5498 12.5469C5.1912 12.7539 4.73256 12.6309 4.52539 12.2725L4.0498 11.4483L3.57422 12.2725C3.36705 12.631 2.90842 12.7539 2.5498 12.5469C2.19116 12.3398 2.06843 11.8812 2.27539 11.5225L2.75098 10.6983H1.7998C1.38559 10.6983 1.0498 10.3625 1.0498 9.94826C1.04999 9.53421 1.38571 9.19826 1.7998 9.19826H2.75098L2.27539 8.37502C2.06831 8.01632 2.19113 7.55772 2.5498 7.35061C2.9085 7.14353 3.3671 7.26636 3.57422 7.62502L4.0498 8.44826L4.52539 7.62502Z\" fill=\"currentColor\"/><path d=\"M12.4756 7.62502C12.6827 7.26639 13.1413 7.14353 13.5 7.35061C13.8587 7.55772 13.9815 8.01631 13.7744 8.37502L13.2988 9.19826H14.25C14.6641 9.19826 14.9998 9.53421 15 9.94826C15 10.3625 14.6642 10.6983 14.25 10.6983H13.2988L13.7744 11.5225C13.9813 11.8812 13.8586 12.3398 13.5 12.5469C13.1414 12.7539 12.6828 12.6309 12.4756 12.2725L12 11.4483L11.5244 12.2725C11.3173 12.631 10.8586 12.7539 10.5 12.5469C10.1414 12.3398 10.0186 11.8812 10.2256 11.5225L10.7012 10.6983H9.75C9.33579 10.6983 9 10.3625 9 9.94826C9.00019 9.53421 9.3359 9.19826 9.75 9.19826H10.7012L10.2256 8.37502C10.0185 8.01632 10.1413 7.55772 10.5 7.35061C10.8587 7.14353 11.3173 7.26636 11.5244 7.62502L12 8.44826L12.4756 7.62502Z\" fill=\"currentColor\"/><path d=\"M20.4756 7.62502C20.6827 7.26639 21.1413 7.14353 21.5 7.35061C21.8587 7.55772 21.9815 8.01631 21.7744 8.37502L21.2988 9.19826H22.25C22.6641 9.19826 22.9998 9.53421 23 9.94826C23 10.3625 22.6642 10.6983 22.25 10.6983H21.2988L21.7744 11.5225C21.9813 11.8812 21.8586 12.3398 21.5 12.5469C21.1414 12.7539 20.6828 12.6309 20.4756 12.2725L20 11.4483L19.5244 12.2725C19.3172 12.631 18.8586 12.7539 18.5 12.5469C18.1414 12.3398 18.0186 11.8812 18.2256 11.5225L18.7012 10.6983H17.75C17.3358 10.6983 17 10.3625 17 9.94826C17.0002 9.53421 17.3359 9.19826 17.75 9.19826H18.7012L18.2256 8.37502C18.0185 8.01632 18.1413 7.55772 18.5 7.35061C18.8587 7.14353 19.3173 7.26636 19.5244 7.62502L20 8.44826L20.4756 7.62502Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPasswordStars;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAs6E,EAAt6E,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,EAAE,6JAA6J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+tBAA+tB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4rBAA4rB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,isBAAisB,KAAK,eAAc,CAAI,GAGh6E",
  "debugId": "32B295F8D5F5851B64756E2164756E21",
  "names": []
}