{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRuler/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 IconRuler: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"ruler\"><path d=\"M14.7624 1.92663C15.4458 1.24321 16.5539 1.24321 17.2373 1.92663L22.0731 6.76241C22.7565 7.44583 22.7565 8.55387 22.0731 9.23729L9.23729 22.0731C8.55387 22.7565 7.44583 22.7565 6.76241 22.0731L1.92663 17.2373C1.24321 16.5539 1.24321 15.4458 1.92663 14.7624L4.31425 12.3748L6.46967 14.5302C6.76256 14.8231 7.23744 14.8231 7.53033 14.5302C7.82322 14.2373 7.82322 13.7624 7.53033 13.4695L5.37491 11.3141L7.81425 8.87479L10.9697 12.0302C11.2626 12.3231 11.7374 12.3231 12.0303 12.0302C12.3232 11.7373 12.3232 11.2624 12.0303 10.9695L8.87491 7.81413L11.3142 5.37479L13.4697 7.53021C13.7626 7.8231 14.2374 7.8231 14.5303 7.53021C14.8232 7.23731 14.8232 6.76244 14.5303 6.46955L12.3749 4.31413L14.7624 1.92663Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRuler;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA+wB,EAA/wB,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,ksBAAksB,KAAK,eAAc,CAAI,GAGzwB",
  "debugId": "717B7D79128B779B64756E2164756E21",
  "names": []
}