{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconClosedCaptioning/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 IconClosedCaptioning: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"closed-captioning, cc\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.75 3C3.33579 3 3 3.33579 3 3.75V20.25C3 20.6642 3.33579 21 3.75 21H20.25C20.6642 21 21 20.6642 21 20.25V3.75C21 3.33579 20.6642 3 20.25 3H3.75ZM10.2997 10.5994C9.61468 10.0841 8.63619 10.1389 8.01256 10.7626C7.32915 11.446 7.32915 12.554 8.01256 13.2374C8.63619 13.8611 9.61468 13.9159 10.2997 13.4006C10.6307 13.1516 11.1009 13.2181 11.3499 13.5491C11.5989 13.8802 11.5324 14.3504 11.2014 14.5994C9.92761 15.5575 8.11135 15.4575 6.9519 14.2981C5.6827 13.0289 5.6827 10.9711 6.9519 9.7019C8.11135 8.54245 9.92761 8.44248 11.2014 9.40064C11.5324 9.64964 11.5989 10.1198 11.3499 10.4509C11.1009 10.7819 10.6307 10.8484 10.2997 10.5994ZM14.5126 10.7626C15.1362 10.1389 16.1147 10.0841 16.7997 10.5994C17.1307 10.8484 17.6009 10.7819 17.8499 10.4509C18.0989 10.1198 18.0324 9.64964 17.7014 9.40064C16.4276 8.44248 14.6114 8.54245 13.4519 9.7019C12.1827 10.9711 12.1827 13.0289 13.4519 14.2981C14.6114 15.4575 16.4276 15.5575 17.7014 14.5994C18.0324 14.3504 18.0989 13.8802 17.8499 13.5491C17.6009 13.2181 17.1307 13.1516 16.7997 13.4006C16.1147 13.9159 15.1362 13.8611 14.5126 13.2374C13.8291 12.554 13.8291 11.446 14.5126 10.7626Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconClosedCaptioning;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAgvC,EAAhvC,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6mCAA6mC,KAAK,eAAc,CAAI,GAG1uC",
  "debugId": "EDDBD114D7ED558464756E2164756E21",
  "names": []
}