{
  "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=\"M13.8479 2.84103C15.3124 1.37656 17.6867 1.37656 19.1512 2.84103L21.1586 4.84838C22.623 6.31285 22.623 8.68722 21.1586 10.1517L10.1512 21.159C8.68673 22.6235 6.31236 22.6235 4.8479 21.159L2.84054 19.1517C1.37607 17.6872 1.37607 15.3129 2.84054 13.8484L4.3141 12.3748L6.46967 14.5304C6.76256 14.8233 7.23744 14.8233 7.53033 14.5304C7.82322 14.2375 7.82322 13.7626 7.53033 13.4697L5.37476 11.3142L7.8141 8.87482L10.9697 12.0304C11.2626 12.3233 11.7374 12.3233 12.0303 12.0304C12.3232 11.7375 12.3232 11.2626 12.0303 10.9697L8.87476 7.81416L11.3141 5.37482L13.4697 7.53039C13.7626 7.82328 14.2374 7.82328 14.5303 7.53039C14.8232 7.2375 14.8232 6.76262 14.5303 6.46973L12.3748 4.31416L13.8479 2.84103Z\" 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,gBAAywB,EAAzwB,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,4rBAA4rB,KAAK,eAAc,CAAI,GAGnwB",
  "debugId": "23F920BCDED31F9B64756E2164756E21",
  "names": []
}