{"version":3,"sources":["../src/IconPencilSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPencilSparkle: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase\n      {...props}\n      ariaLabel=\"pencil-sparkle, magic pencil, magic brush\"\n    >\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M9.0014 11.6897L19.5342 2.47351L22.5265 5.46581L13.3103 15.9986C12.7671 13.8907 11.1093 12.2329 9.0014 11.6897Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M7.5 13C5.01472 13 3 15.0147 3 17.5V22H7.5C9.98528 22 12 19.9853 12 17.5C12 17.3896 11.996 17.2801 11.9882 17.1715C11.8273 14.9476 10.0524 13.1727 7.82852 13.0118C7.71991 13.004 7.61036 13 7.5 13Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4.33333 7.33333L5.5 5L6.66667 7.33333L9 8.5L6.66667 9.66667L5.5 12L4.33333 9.66667L2 8.5L4.33333 7.33333Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M8.66667 3.66667L9.5 2L10.3333 3.66667L12 4.5L10.3333 5.33333L9.5 7L8.66667 5.33333L7 4.5L8.66667 3.66667Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconPencilSparkle;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPencilSparkle","props","React","CentralIconBase","IconPencilSparkle_default"]}