{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDraft/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 IconDraft: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"draft\"><path d=\"M6.5 3C4.84315 3 3.5 4.34315 3.5 6C3.5 7.39788 4.45608 8.57245 5.75 8.90549V15.0945C4.45608 15.4275 3.5 16.6021 3.5 18C3.5 19.6569 4.84315 21 6.5 21C8.15685 21 9.5 19.6569 9.5 18C9.5 16.6021 8.54392 15.4275 7.25 15.0945V8.90549C8.54392 8.57245 9.5 7.39788 9.5 6C9.5 4.34315 8.15685 3 6.5 3Z\" fill=\"currentColor\"/><path d=\"M17.5 4.5C16.6716 4.5 16 5.17157 16 6C16 6.82843 16.6716 7.5 17.5 7.5C18.3284 7.5 19 6.82843 19 6C19 5.17157 18.3284 4.5 17.5 4.5Z\" fill=\"currentColor\"/><path d=\"M17.5 9.75C16.6716 9.75 16 10.4216 16 11.25C16 12.0784 16.6716 12.75 17.5 12.75C18.3284 12.75 19 12.0784 19 11.25C19 10.4216 18.3284 9.75 17.5 9.75Z\" fill=\"currentColor\"/><path d=\"M17.5 15C15.8431 15 14.5 16.3431 14.5 18C14.5 19.6569 15.8431 21 17.5 21C19.1569 21 20.5 19.6569 20.5 18C20.5 16.3431 19.1569 15 17.5 15Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDraft;\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,gBAAi3B,EAAj3B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,CAAI,GAG32B",
  "debugId": "6F04ACE9E22EDE9964756E2164756E21",
  "names": []
}