{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBrush/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 IconBrush: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"brush, color\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.9695 1.96961C13.2624 1.67672 13.7373 1.67672 14.0302 1.96961L18.0302 5.96961C18.1708 6.11026 18.2499 6.30103 18.2499 6.49994L18.2499 7.74994L19.4999 7.74994C19.6988 7.74994 19.8895 7.82896 20.0302 7.96961L22.0302 9.96961C22.3231 10.2625 22.3231 10.7374 22.0302 11.0303L17.0303 16.0303C17.0283 16.0323 17.0263 16.0343 17.0242 16.0363L14.0302 19.0304C13.8895 19.1711 13.6986 19.2501 13.4996 19.2501C13.3007 19.25 13.1099 19.1709 12.9692 19.0302L12.5917 18.6523C11.7131 17.7729 10.2879 17.7726 9.40893 18.6516L6.03089 22.0299C5.73804 22.3227 5.26323 22.3228 4.97031 22.03L1.96977 19.0305C1.82907 18.8899 1.75002 18.6991 1.75 18.5002C1.74998 18.3012 1.82899 18.1104 1.96965 17.9698L5.3483 14.5909C6.22725 13.7119 6.22686 12.2867 5.34743 11.4082L4.96976 11.0309C4.82899 10.8902 4.74987 10.6994 4.74982 10.5005C4.74976 10.3015 4.82878 10.1107 4.96948 9.96995L7.96035 6.97894C7.96338 6.97581 7.96643 6.9727 7.96952 6.96961L12.9695 1.96961ZM15.4393 15.4999L8.49995 8.56069L6.55639 10.5043C7.8715 11.9767 7.82252 14.2379 6.409 15.6515L3.56074 18.5L5.50043 20.439L8.34824 17.591C9.76186 16.1772 12.0233 16.1282 13.4957 17.4435L15.4393 15.4999Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBrush;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA8uC,EAA9uC,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,onCAAonC,KAAK,eAAc,CAAI,GAGxuC",
  "debugId": "B40835A43966BBB764756E2164756E21",
  "names": []
}