{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVariables/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 IconVariables: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"variables, figma\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.6257 1.85048C11.8577 1.71651 12.1436 1.71651 12.3757 1.85048L20.6029 6.60048C20.835 6.73446 20.9779 6.98205 20.9779 7.25V16.75C20.9779 17.0179 20.835 17.2655 20.6029 17.3995L12.3757 22.1495C12.1436 22.2835 11.8577 22.2835 11.6257 22.1495L3.39844 17.3995C3.16639 17.2655 3.02344 17.0179 3.02344 16.75V7.25C3.02344 6.98205 3.16639 6.73446 3.39844 6.60048L11.6257 1.85048ZM9.75073 12C9.75073 10.7574 10.7581 9.75 12.0007 9.75C13.2434 9.75 14.2507 10.7574 14.2507 12C14.2507 13.2426 13.2434 14.25 12.0007 14.25C10.7581 14.25 9.75073 13.2426 9.75073 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVariables;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAyqB,EAAzqB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2iBAA2iB,KAAK,eAAc,CAAI,GAGnqB",
  "debugId": "064B7B2678135BD264756E2164756E21",
  "names": []
}