{
  "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=\"M2.75 2C2.33579 2 2 2.33579 2 2.75V16.5C2 19.5376 4.46243 22 7.5 22C8.53234 22 9.49824 21.7156 10.3236 21.2208L22.1582 14.3881C22.3305 14.2887 22.4562 14.1249 22.5076 13.9327C22.5591 13.7406 22.5322 13.5359 22.4327 13.3636L19.0474 7.5L19.1385 7.34216C19.2379 7.1699 19.2649 6.96518 19.2134 6.77305C19.1619 6.58091 19.0362 6.4171 18.864 6.31764L13 2.93209V2.75C13 2.33579 12.6642 2 12.25 2H2.75ZM20.7587 13.4641L13.0266 17.9282L18.1813 9L20.7587 13.4641ZM13 14.9743L17.4644 7.24168L13 4.66414V14.9743ZM7.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,gBAA8xB,EAA9xB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kpBAAkpB,KAAK,eAAc,CAAI,GAGxxB",
  "debugId": "3DBFB60DC4E5F67764756E2164756E21",
  "names": []
}