{"version":3,"sources":["../src/IconComponents/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconComponents: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"components, figma\">\n      <path\n        d=\"M9.20696 5.04274L11.2927 2.95696C11.6833 2.56643 12.3164 2.56643 12.707 2.95696L14.7927 5.04274C15.1833 5.43327 15.1833 6.06643 14.7927 6.45696L12.707 8.54274C12.3164 8.93327 11.6833 8.93327 11.2927 8.54274L9.20696 6.45696C8.81643 6.06643 8.81643 5.43327 9.20696 5.04274Z\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n      <path\n        d=\"M2.95696 11.2927L5.04274 9.20696C5.43327 8.81643 6.06643 8.81643 6.45696 9.20696L8.54274 11.2927C8.93327 11.6833 8.93327 12.3164 8.54274 12.707L6.45696 14.7927C6.06643 15.1833 5.43327 15.1833 5.04274 14.7927L2.95696 12.707C2.56643 12.3164 2.56643 11.6833 2.95696 11.2927Z\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n      <path\n        d=\"M15.457 11.2927L17.5427 9.20696C17.9333 8.81643 18.5664 8.81643 18.957 9.20696L21.0427 11.2927C21.4333 11.6833 21.4333 12.3164 21.0427 12.707L18.957 14.7927C18.5664 15.1833 17.9333 15.1833 17.5427 14.7927L15.457 12.707C15.0664 12.3164 15.0664 11.6833 15.457 11.2927Z\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n      <path\n        d=\"M9.20696 17.5427L11.2927 15.457C11.6833 15.0664 12.3164 15.0664 12.707 15.457L14.7927 17.5427C15.1833 17.9333 15.1833 18.5664 14.7927 18.957L12.707 21.0427C12.3164 21.4333 11.6833 21.4333 11.2927 21.0427L9.20696 18.957C8.81643 18.5664 8.81643 17.9333 9.20696 17.5427Z\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconComponents;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,EAAE,kRACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,kRACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,6QACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,8QACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconComponents","props","React","CentralIconBase","IconComponents_default"]}