{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMask/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 IconMask: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"mask, theatre\"><path d=\"M3.75 12.5V3.25C9.35992 4.40427 14.6401 4.40427 20.25 3.25V12.5C20.25 17.0563 16.5563 20.75 12 20.75C7.44365 20.75 3.75 17.0563 3.75 12.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8 13C11 14.1667 13 14.1667 16 13C13.5 17.6667 10.5 17.6667 8 13Z\" fill=\"currentColor\"/><path d=\"M9.25 9.5C9.89156 9.5 10.3687 9.91118 10.4766 10.3975C10.192 10.2845 9.72726 10.1055 9.25 10.1055C8.77227 10.1055 8.30697 10.2845 8.02246 10.3975C8.13027 9.91109 8.60835 9.5 9.25 9.5Z\" fill=\"currentColor\" stroke=\"currentColor\"/><path d=\"M16.5 10.6058C16.5 11.1421 16.2135 11.0298 15.7732 10.8572C15.4855 10.7444 15.132 10.6058 14.75 10.6058C14.368 10.6058 14.0145 10.7444 13.7268 10.8572C13.2865 11.0298 13 11.1421 13 10.6058C13 9.71896 13.7835 9 14.75 9C15.7165 9 16.5 9.71896 16.5 10.6058Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMask;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAk2B,EAAl2B,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,6IAA6I,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAe,OAAO,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iQAAiQ,KAAK,eAAc,CAAI,GAG51B",
  "debugId": "54AFA8703AE6143864756E2164756E21",
  "names": []
}