{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPencil3/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 IconPencil3: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pencil-3, edit, write, prompt\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.5425 3.54224C16.1755 1.9093 18.8234 1.90955 20.4566 3.54224C22.0897 5.17538 22.0896 7.82313 20.4566 9.4563L10.3696 19.5442C9.79434 20.1194 9.0568 20.5051 8.25636 20.6506L3.67823 21.4827C3.35551 21.5412 3.02442 21.4382 2.79249 21.2063C2.5608 20.9743 2.4575 20.6432 2.51612 20.3206L3.34815 15.7424C3.49374 14.9421 3.87944 14.2044 4.4546 13.6292L14.5425 3.54224ZM18.0308 5.96997C17.7379 5.67708 17.2631 5.67708 16.9702 5.96997L13.9702 8.96997C13.6776 9.26289 13.6774 9.73771 13.9702 10.0305C14.263 10.3231 14.7379 10.3231 15.0308 10.0305L18.0308 7.03052C18.3236 6.7377 18.3234 6.26288 18.0308 5.96997Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPencil3;\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,gBAAwuB,EAAxuB,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6lBAA6lB,KAAK,eAAc,CAAI,GAGluB",
  "debugId": "139A91579130CAE764756E2164756E21",
  "names": []
}