{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTextColor/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 IconTextColor: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"text-color\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.6795 4.43224C10.5562 4.16851 10.2913 4 10.0002 4C9.70902 4 9.44418 4.16851 9.32082 4.43224L2.07082 19.9322C1.89533 20.3074 2.05722 20.7539 2.43241 20.9294C2.80761 21.1049 3.25404 20.943 3.42954 20.5678L5.81117 15.476C5.87156 15.4917 5.93489 15.5 6.00018 15.5H14.0002C14.0655 15.5 14.1288 15.4917 14.1892 15.476L16.5708 20.5678C16.7463 20.943 17.1927 21.1049 17.5679 20.9294C17.9431 20.7539 18.105 20.3074 17.9295 19.9322L10.6795 4.43224ZM10.0002 6.52018L13.4988 14H6.50155L10.0002 6.52018Z\" fill=\"currentColor\"/><path d=\"M19.2243 2.31034C19.0355 2.11216 18.7738 2 18.5001 2C18.2264 2 17.9647 2.11216 17.776 2.31034L17.7746 2.31177L17.7724 2.31416L17.7651 2.32181L17.7404 2.34824C17.7195 2.3707 17.6898 2.40276 17.6528 2.44354C17.5787 2.52504 17.4745 2.64174 17.3502 2.78671C17.1027 3.07554 16.7706 3.48207 16.4364 3.95001C16.1043 4.41488 15.7563 4.95945 15.4879 5.52319C15.2266 6.0719 15.0001 6.72163 15.0001 7.375C15.0001 9.2095 16.4988 11 18.5001 11C20.5014 11 22.0001 9.2095 22.0001 7.375C22.0001 6.72163 21.7736 6.0719 21.5124 5.52319C21.2439 4.95945 20.8959 4.41488 20.5639 3.95001C20.2296 3.48207 19.8976 3.07554 19.65 2.78671C19.5257 2.64174 19.4216 2.52504 19.3475 2.44354C19.3104 2.40276 19.2808 2.3707 19.2599 2.34824L19.2351 2.32181L19.2279 2.31416L19.2256 2.31177L19.2243 2.31034Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTextColor;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA24C,EAA34C,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gfAAgf,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,swBAAswB,KAAK,eAAc,CAAI,GAGr4C",
  "debugId": "EF3F45FE81FCC7C164756E2164756E21",
  "names": []
}