{
  "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=\"M19.7109 7.78046C19.8303 7.81554 19.9402 7.88013 20.0298 7.96971L21.3227 9.26261C22.0061 9.94602 22.0061 11.0541 21.3227 11.7375L14.6549 18.4054C14.0168 19.0436 12.9821 19.0433 12.3443 18.4049C11.6022 17.6621 10.3984 17.6619 9.65599 18.4043L6.73762 21.3229C6.05429 22.0062 4.9464 22.0064 4.26293 21.3231L2.67685 19.7376C1.99324 19.0543 1.99312 17.9461 2.67658 17.2626L5.59551 14.3435C6.33781 13.6011 6.33748 12.3975 5.59478 11.6556C4.95635 11.0178 4.95608 9.98314 5.59416 9.34502L7.95223 6.98686C7.95768 6.98104 7.96324 6.9753 7.9689 6.96964L12.2618 2.67675C12.749 2.18951 13.4521 2.04965 14.0632 2.25715C14.3094 2.34069 14.5407 2.48058 14.7369 2.67683L18.0298 5.96971C18.1705 6.11036 18.2495 6.30113 18.2495 6.50004V7.74997L19.4992 7.74997C19.5715 7.74997 19.6428 7.76041 19.7109 7.78046ZM15.4388 15.5001L8.49951 8.56091L6.65485 10.4057C6.60274 10.4578 6.60276 10.5423 6.6549 10.5944C7.98388 11.922 7.98447 14.0757 6.65621 15.4041L3.73728 18.3232C3.63964 18.4209 3.63966 18.5792 3.73732 18.6768L5.32339 20.2623C5.42103 20.3599 5.5793 20.3599 5.67692 20.2622L8.59529 17.3437C9.92367 16.0152 12.0776 16.0157 13.4054 17.3447C13.4575 17.3969 13.5421 17.3969 13.5942 17.3448L15.4388 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,gBAAgyC,EAAhyC,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sqCAAsqC,KAAK,eAAc,CAAI,GAG1xC",
  "debugId": "CC475831322D1CBB64756E2164756E21",
  "names": []
}