{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCard/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 IconCard: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"card, profile, avatar, account\"><path d=\"M12 7.25C12.8284 7.25 13.5 7.92157 13.5 8.75C13.5 9.57843 12.8284 10.25 12 10.25C11.1716 10.25 10.5 9.57843 10.5 8.75C10.5 7.92157 11.1716 7.25 12 7.25Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.4502 2C15.2778 2 15.9436 1.99903 16.4814 2.04297C17.0281 2.08763 17.508 2.18287 17.9522 2.40918C18.6578 2.76871 19.2313 3.34225 19.5908 4.04785C19.8171 4.49205 19.9124 4.97195 19.957 5.51856C20.001 6.05639 20 6.72222 20 7.54981V16.4502C20 17.2778 20.001 17.9436 19.957 18.4814C19.9124 19.0281 19.8171 19.5079 19.5908 19.9522C19.2313 20.6578 18.6578 21.2313 17.9522 21.5908C17.508 21.8171 17.0281 21.9124 16.4814 21.957C15.9436 22.001 15.2778 22 14.4502 22H9.54981C8.72222 22 8.05639 22.001 7.51856 21.957C6.97195 21.9124 6.49205 21.8171 6.04785 21.5908C5.34225 21.2313 4.76871 20.6578 4.40918 19.9522C4.18287 19.5079 4.08763 19.0281 4.04297 18.4814C3.99903 17.9436 4 17.2778 4 16.4502V7.54981C4 6.72222 3.99903 6.05639 4.04297 5.51856C4.08763 4.97195 4.18287 4.49205 4.40918 4.04785C4.76871 3.34225 5.34225 2.76871 6.04785 2.40918C6.49205 2.18287 6.97195 2.08763 7.51856 2.04297C8.05639 1.99903 8.72222 2 9.54981 2H14.4502ZM8.75 16.5C8.33579 16.5 8 16.8358 8 17.25C8 17.6642 8.33579 18 8.75 18H15.25C15.6642 18 16 17.6642 16 17.25C16 16.8358 15.6642 16.5 15.25 16.5H8.75ZM8.75 13.5C8.33579 13.5 8 13.8358 8 14.25C8 14.6642 8.33579 15 8.75 15H15.25C15.6642 15 16 14.6642 16 14.25C16 13.8358 15.6642 13.5 15.25 13.5H8.75ZM12 5.75C10.3431 5.75 9 7.09315 9 8.75C9 10.4069 10.3431 11.75 12 11.75C13.6569 11.75 15 10.4069 15 8.75C15 7.09315 13.6569 5.75 12 5.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCard;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAupD,EAAvpD,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,2JAA2J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m1CAAm1C,KAAK,eAAc,CAAI,GAGjpD",
  "debugId": "0787D8A337DBA16264756E2164756E21",
  "names": []
}