{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWhiteboard1/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 IconWhiteboard1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"whiteboard-1, artboard\"><path d=\"M12.75 2.75C12.75 2.33579 12.4142 2 12 2C11.5858 2 11.25 2.33579 11.25 2.75V4H2.75C2.33579 4 2 4.33579 2 4.75V18.25C2 18.6642 2.33579 19 2.75 19H6.95943L6.28849 21.0128C6.1575 21.4058 6.36987 21.8305 6.76283 21.9615C7.15579 22.0925 7.58053 21.8801 7.71151 21.4872L8.54057 19H11.25V20.25C11.25 20.6642 11.5858 21 12 21C12.4142 21 12.75 20.6642 12.75 20.25V19H15.4594L16.2885 21.4872C16.4195 21.8801 16.8442 22.0925 17.2372 21.9615C17.6301 21.8305 17.8425 21.4058 17.7115 21.0128L17.0406 19H21.25C21.6642 19 22 18.6642 22 18.25V4.75C22 4.33579 21.6642 4 21.25 4H12.75V2.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWhiteboard1;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA4pB,EAA5pB,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,EAAE,8jBAA8jB,KAAK,eAAc,CAAI,GAGtpB",
  "debugId": "D9E0BB4DCEC27F0464756E2164756E21",
  "names": []
}