{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNotepad/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 IconNotepad: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"notepad,notes\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.75 1.5C8.16421 1.5 8.5 1.83579 8.5 2.25V2.52778H11.25V2.25C11.25 1.83579 11.5858 1.5 12 1.5C12.4142 1.5 12.75 1.83579 12.75 2.25V2.52778H15.5V2.25C15.5 1.83579 15.8358 1.5 16.25 1.5C16.6642 1.5 17 1.83579 17 2.25V2.52778H18.75C19.7165 2.52778 20.5 3.31128 20.5 4.27778V19.75C20.5 20.7165 19.7165 21.5 18.75 21.5H5.25C4.2835 21.5 3.5 20.7165 3.5 19.75V4.27778C3.5 3.31128 4.2835 2.52778 5.25 2.52778H7V2.25C7 1.83579 7.33579 1.5 7.75 1.5ZM8 9.75C8 9.33579 8.33579 9 8.75 9H15.25C15.6642 9 16 9.33579 16 9.75C16 10.1642 15.6642 10.5 15.25 10.5H8.75C8.33579 10.5 8 10.1642 8 9.75ZM8 13.75C8 13.3358 8.33579 13 8.75 13H13.25C13.6642 13 14 13.3358 14 13.75C14 14.1642 13.6642 14.5 13.25 14.5H8.75C8.33579 14.5 8 14.1642 8 13.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconNotepad;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAo1B,EAAp1B,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ytBAAytB,KAAK,eAAc,CAAI,GAG90B",
  "debugId": "54B0D16667988F9264756E2164756E21",
  "names": []
}