{
  "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\"><g clipPath=\"url(#clip0_6508_53969)\"><path d=\"M11.5 11.5L8.875 8.875L5.375 12.375L7 14\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M12.375 5.375L8.875 8.875\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M14 7L12.375 5.375L16 1.75L22.25 8L8 22.25L1.75 16L5.375 12.375\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></g><defs><clipPath id=\"clip0_6508_53969\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs></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,gBAA6hB,EAA7hB,IAAqB,EAAO,UAAU,SAAQ,gBAAwY,IAAxY,CAAG,SAAS,0BAAyB,gBAAC,OAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,4BAA4B,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,kEAAkE,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,EAAE,gBAA8F,OAA9F,KAAM,gBAA6E,WAA7E,CAAU,GAAG,oBAAmB,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAGvhB",
  "debugId": "8A808B18EC75B95A64756E2164756E21",
  "names": []
}