{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPencil/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 IconPencil: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pencil, edit, write\"><path d=\"M16.4697 1.96967C16.7626 1.67678 17.2374 1.67678 17.5303 1.96967L22.0303 6.46967C22.3232 6.76256 22.3232 7.23744 22.0303 7.53033L18.8107 10.75L13.25 5.18934L16.4697 1.96967Z\" fill=\"currentColor\"/><path d=\"M12.1893 6.25L2.21967 16.2197C2.07902 16.3603 2 16.5511 2 16.75V21.25C2 21.6642 2.33579 22 2.75 22H7.25C7.44891 22 7.63968 21.921 7.78033 21.7803L17.75 11.8107L12.1893 6.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPencil;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAwd,EAAxd,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,CAAI,GAGld",
  "debugId": "8A358AEA04B8CF1764756E2164756E21",
  "names": []
}