{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAsterisk/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 IconAsterisk: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"asterisk, placeholder\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.003 2C12.4173 2 12.753 2.33579 12.753 2.75V10.7015L19.6398 6.72548C19.9985 6.51837 20.4572 6.64128 20.6643 7C20.8714 7.35872 20.7485 7.81741 20.3898 8.02452L13.5035 12.0003L20.3888 15.9755C20.7475 16.1826 20.8704 16.6413 20.6633 17C20.4562 17.3587 19.9975 17.4816 19.6388 17.2745L12.753 13.299V21.25C12.753 21.6642 12.4173 22 12.003 22C11.5888 22 11.253 21.6642 11.253 21.25V13.2996L4.36828 17.2745C4.00956 17.4816 3.55087 17.3587 3.34376 17C3.13666 16.6413 3.25956 16.1826 3.61828 15.9755L10.5035 12.0003L3.61731 8.02452C3.25859 7.81741 3.13569 7.35872 3.34279 7C3.5499 6.64128 4.00859 6.51837 4.36731 6.72548L11.253 10.701V2.75C11.253 2.33579 11.5888 2 12.003 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAsterisk;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAkyB,EAAlyB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+pBAA+pB,KAAK,eAAc,CAAI,GAG5xB",
  "debugId": "01F411D138A6DA6264756E2164756E21",
  "names": []
}