{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPlayground/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 IconPlayground: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"playground, forms, shapes, geo\"><path d=\"M14.4643 2.77544C14.0644 2.66839 13.6533 2.90571 13.546 3.30563L11.9436 9.27951C11.892 9.4717 11.919 9.6765 12.0185 9.84882C12.1179 10.0211 12.2818 10.1469 12.4741 10.1983L18.4545 11.799C18.8545 11.9061 19.2655 11.6687 19.3728 11.2688L20.9753 5.29495C21.0268 5.10276 20.9999 4.89796 20.9004 4.72564C20.8009 4.55331 20.637 4.42759 20.4448 4.37614L14.4643 2.77544Z\" fill=\"currentColor\"/><path d=\"M5.47325 6.41118C5.26797 6.23912 4.98651 6.18959 4.73483 6.28125C4.48315 6.3729 4.29945 6.59182 4.25289 6.8556L3.01144 13.8885C2.96486 14.1523 3.06257 14.421 3.26777 14.5933C3.47297 14.7655 3.75448 14.8153 4.00628 14.7237L10.7244 12.2812C10.9763 12.1896 11.1602 11.9705 11.2067 11.7065C11.2533 11.4425 11.1553 11.1738 10.9499 11.0016L5.47325 6.41118Z\" fill=\"currentColor\"/><path d=\"M14.0098 13.3153C11.8866 13.3153 10.1641 15.0348 10.1641 17.1576C10.1641 19.2804 11.8866 20.9999 14.0098 20.9999C16.1329 20.9999 17.8555 19.2804 17.8555 17.1576C17.8555 15.0348 16.1329 13.3153 14.0098 13.3153Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPlayground;\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,gBAAkkC,EAAlkC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,6WAA6W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iWAAiW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,CAAI,GAG5jC",
  "debugId": "A236AF39F71491E664756E2164756E21",
  "names": []
}