{
  "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=\"M2 17L22 17\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M9.80078 9.90526H14.2008M13.1008 11.8105L10.9008 8M10.9008 11.8106L13.1008 8.00005\" stroke=\"currentColor\" strokeWidth=\"1.8\" strokeLinecap=\"round\"/><path d=\"M17.8008 9.90526H22.2008M21.1008 11.8105L18.9008 8M18.9008 11.8106L21.1008 8.00005\" stroke=\"currentColor\" strokeWidth=\"1.8\" strokeLinecap=\"round\"/><path d=\"M1.80078 9.90526H6.20078M5.10078 11.8105L2.90078 8M2.90078 11.8106L5.10078 8.00005\" stroke=\"currentColor\" strokeWidth=\"1.8\" strokeLinecap=\"round\"/></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,gBAAgmB,EAAhmB,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qFAAqF,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qFAAqF,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qFAAqF,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,CAAI,GAG1lB",
  "debugId": "35676802A24DA40364756E2164756E21",
  "names": []
}