{
  "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.1257 2.13924C11.6671 1.82663 12.3342 1.82663 12.8757 2.13924L20.1029 6.31189C20.6444 6.6245 20.9779 7.20222 20.9779 7.82743V16.1727C20.9779 16.7979 20.6444 17.3757 20.1029 17.6883L12.8757 21.8609C12.3342 22.1735 11.6671 22.1735 11.1257 21.8609L3.89844 17.6883C3.35699 17.3757 3.02344 16.798 3.02344 16.1727V7.82744C3.02344 7.20222 3.35699 6.6245 3.89844 6.31189L11.1257 2.13924ZM9.75073 12.0001C9.75073 10.7575 10.7581 9.75012 12.0007 9.75012C13.2434 9.75012 14.2507 10.7575 14.2507 12.0001C14.2507 13.2428 13.2434 14.2501 12.0007 14.2501C10.7581 14.2501 9.75073 13.2428 9.75073 12.0001Z\" 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,gBAAgtB,EAAhtB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,klBAAklB,KAAK,eAAc,CAAI,GAG1sB",
  "debugId": "2D315111DF7E29A864756E2164756E21",
  "names": []
}