{
  "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=\"M3.75 2C2.7835 2 2 2.7835 2 3.75V16.5C2 19.5376 4.46243 22 7.5 22C8.53234 22 9.49824 21.7156 10.3236 21.2208L21.2922 14.8881C22.1292 14.4049 22.416 13.3346 21.9327 12.4976L18.8669 7.18741C18.8204 6.63705 18.5144 6.11582 17.9979 5.81764L12.6872 2.75151C12.3718 2.29827 11.8462 2 11.25 2H3.75ZM20.5422 13.5891L13.0266 17.9282L18.1813 9L20.6337 13.2476C20.7027 13.3672 20.6618 13.5201 20.5422 13.5891ZM17.3394 7.45819L13 14.9743V4.66414L17.2479 7.11668C17.332 7.16519 17.3784 7.2557 17.3726 7.34944C17.3704 7.38569 17.3601 7.42241 17.3394 7.45819ZM7.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,gBAA00B,EAA10B,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8rBAA8rB,KAAK,eAAc,CAAI,GAGp0B",
  "debugId": "6CD22A31664147D264756E2164756E21",
  "names": []
}