{
  "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=\"M20.6159 8.55552C21.6898 9.62945 21.6898 11.3706 20.6159 12.4446L15.2802 17.7804C14.2969 18.7637 12.7026 18.7633 11.7198 17.7796C11.3227 17.3821 10.6785 17.382 10.2812 17.7793L7.53062 20.5301C6.40946 21.6513 4.59167 21.6515 3.47027 20.5305C2.34862 19.4093 2.34843 17.591 3.46983 16.4695L6.22071 13.7185C6.61791 13.3213 6.61773 12.6772 6.22032 12.2802C5.23661 11.2975 5.23618 9.70328 6.21937 8.72006L7.95434 6.985C7.95924 6.97981 7.96423 6.97468 7.9693 6.96961L11.5551 3.38383C12.601 2.33792 14.2798 2.31061 15.3587 3.30191C15.3876 3.32848 15.4161 3.35579 15.4442 3.38382C15.4441 3.38378 15.4442 3.38387 15.4442 3.38382L18.03 5.96961C18.1706 6.11026 18.2497 6.30113 18.2497 6.50004V7.74994L19.4996 7.74994C19.6705 7.74994 19.8354 7.80828 19.9677 7.91392C19.9894 7.93123 20.0102 7.94981 20.03 7.96961C20.0299 7.96958 20.03 7.96965 20.03 7.96961L20.6159 8.55552ZM15.4392 15.5001L8.49986 8.56083L7.28005 9.78069C6.88284 10.1779 6.88301 10.822 7.28043 11.219C8.26413 12.2017 8.26457 13.7959 7.2814 14.7791L4.53052 17.5302C3.99495 18.0658 3.99505 18.9342 4.53073 19.4697C5.06631 20.005 5.93447 20.0049 6.46993 19.4694L9.22055 16.7186C10.2038 15.7353 11.7981 15.7357 12.781 16.7194C13.1781 17.1169 13.8222 17.117 14.2195 16.7198L15.4392 15.5001Z\" 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,gBAAm1C,EAAn1C,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ytCAAytC,KAAK,eAAc,CAAI,GAG70C",
  "debugId": "A042206A3DA44D5364756E2164756E21",
  "names": []
}