{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPencil2/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 IconPencil2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pencil-2, edit, write, prompt\"><path d=\"M18.4253 11.4866L10.3697 19.5442C9.79443 20.1194 9.05671 20.5051 8.25638 20.6506L3.67826 21.4827C3.35546 21.5413 3.02451 21.4383 2.79251 21.2063C2.56063 20.9743 2.4575 20.6433 2.51615 20.3206L3.34818 15.7424C3.49378 14.9422 3.87948 14.2043 4.45462 13.6292L12.5113 5.57251L18.4253 11.4866Z\" fill=\"currentColor\"/><path d=\"M14.5425 3.54224C16.1756 1.90948 18.8235 1.90936 20.4566 3.54224C22.0896 5.17529 22.0894 7.82311 20.4566 9.4563L19.4859 10.426L13.5718 4.51197L14.5425 3.54224Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPencil2;\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,gBAAukB,EAAvkB,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,mSAAmS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,CAAI,GAGjkB",
  "debugId": "07397063EA80C3A364756E2164756E21",
  "names": []
}