{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUserSettings/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 IconUserSettings: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"user-settings, people, person, member, cog\"><path d=\"M12 20.25H4.75V19.5C4.75 15.4959 7.99594 12.25 12 12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><circle cx=\"12\" cy=\"7.75\" r=\"4.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.4196 14.5395L21.0455 14.2757L21.8102 15.6002L20.7863 16.9347L21.8819 18.2757L21.1172 19.6002L19.449 19.3814L18.8359 21H17.3065L16.6301 19.3704L14.8819 19.6002L14.1172 18.2757L15.2109 16.9347L14.1889 15.6002L14.9536 14.2757L16.6613 14.5533L17.3065 13H18.8359L19.4196 14.5395ZM17.9995 15.3529C17.0899 15.3529 16.3525 16.0904 16.3525 17C16.3525 17.9096 17.0899 18.6471 17.9995 18.6471C18.9092 18.6471 19.6466 17.9096 19.6466 17C19.6466 16.0904 18.9092 15.3529 17.9995 15.3529Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconUserSettings;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA8yB,EAA9yB,IAAqB,EAAO,UAAU,8CAA6C,gBAAC,OAAD,CAAM,EAAE,0DAA0D,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,OAAO,EAAE,MAAM,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,geAAge,KAAK,eAAc,CAAI,GAGxyB",
  "debugId": "48F83E7AE18FEBFC64756E2164756E21",
  "names": []
}