{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconComponents/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 IconComponents: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"components, figma\"><g clipPath=\"url(#clip0_10805_28824)\"><path d=\"M8.25 5.75L12 2L15.75 5.75L12 9.5L8.25 5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.25 18.25L12 14.5L15.75 18.25L12 22L8.25 18.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M2 12L5.75 8.25L9.5 12L5.75 15.75L2 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M14.5 12L18.25 8.25L22 12L18.25 15.75L14.5 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></g><defs><clipPath id=\"clip0_10805_28824\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs></CentralIconBase>;\n};\n\nexport default IconComponents;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA4kB,EAA5kB,IAAqB,EAAO,UAAU,qBAAoB,gBAA0a,IAA1a,CAAG,SAAS,2BAA0B,gBAAC,OAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oDAAoD,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,0CAA0C,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,YAAY,MAAK,CAAI,EAAE,gBAA+F,OAA/F,KAAM,gBAA8E,WAA9E,CAAU,GAAG,qBAAoB,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAGtkB",
  "debugId": "6E904AF4DF3D207164756E2164756E21",
  "names": []
}