{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColorSwatch/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 IconColorSwatch: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"color-swatch, palette, colours\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.75 2C3.67893 2 2 3.67893 2 5.75V16.5C2 19.5376 4.46243 22 7.5 22C8.53234 22 9.49824 21.7156 10.3236 21.2208L19.5601 15.8881C21.3537 14.8526 21.9683 12.5591 20.9327 10.7655L19.1827 7.73446C18.8191 7.10458 18.2989 6.61914 17.7 6.30029C17.3812 5.70142 16.8957 5.1813 16.2659 4.81764L13.2348 3.06764C12.6048 2.70393 11.9115 2.54361 11.2334 2.56697C10.6578 2.20774 9.97733 2 9.25 2H5.75ZM18.8101 14.5891L13.0266 17.9282L17.6385 9.94024C17.8481 9.57717 17.99 9.19359 18.0683 8.80417L19.6337 11.5155C20.255 12.5917 19.8863 13.9678 18.8101 14.5891ZM16.3394 9.19024L13 14.9743V5.75C13 5.33069 12.9311 4.92747 12.8041 4.55104L15.5159 6.11668C15.9489 6.3667 16.2661 6.73716 16.4517 7.16177C16.7292 7.79647 16.7109 8.54679 16.3394 9.19024ZM7.5 18.25C8.4665 18.25 9.25 17.4665 9.25 16.5C9.25 15.5335 8.4665 14.75 7.5 14.75C6.5335 14.75 5.75 15.5335 5.75 16.5C5.75 17.4665 6.5335 18.25 7.5 18.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconColorSwatch;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAogC,EAApgC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w3BAAw3B,KAAK,eAAc,CAAI,GAG9/B",
  "debugId": "D8E3815C03BA368764756E2164756E21",
  "names": []
}