{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRewind/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 IconRewind: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"rewind\"><path d=\"M18.8057 18.8542C19.0335 19.0218 19.3362 19.0469 19.5886 18.9192C19.8409 18.7916 20 18.5328 20 18.25V5.75C20 5.4672 19.8409 5.20845 19.5886 5.08078C19.3362 4.95311 19.0335 4.97824 18.8057 5.14577L12 10.15V5.75C12 5.4672 11.8409 5.20845 11.5886 5.08078C11.3362 4.95311 11.0335 4.97824 10.8057 5.14577L2.30571 11.3958C2.1135 11.5371 2 11.7614 2 12C2 12.2386 2.1135 12.4629 2.30571 12.6042L10.8057 18.8542C11.0335 19.0218 11.3362 19.0469 11.5886 18.9192C11.8409 18.7916 12 18.5328 12 18.25V13.85L18.8057 18.8542Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRewind;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA8kB,EAA9kB,IAAqB,EAAO,UAAU,UAAS,gBAAC,OAAD,CAAM,EAAE,ggBAAggB,KAAK,eAAc,CAAI,GAGxkB",
  "debugId": "BAC9CD8A63AA76DE64756E2164756E21",
  "names": []
}