{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVideoTrim/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 IconVideoTrim: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"video-trim\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.25 2C15.6642 2 16 2.33579 16 2.75V21.25C16 21.6642 15.6642 22 15.25 22C14.8358 22 14.5 21.6642 14.5 21.25V20H2.754C2.33758 20 2 19.6624 2 19.246V4.754C2 4.33758 2.33758 4 2.754 4H14.5V2.75C14.5 2.33579 14.8358 2 15.25 2ZM7.95728 8.90553C7.73081 8.73132 7.42502 8.70093 7.16869 8.82715C6.91235 8.95337 6.75 9.21427 6.75 9.5V14.5C6.75 14.7857 6.91235 15.0466 7.16869 15.1729C7.42502 15.2991 7.73081 15.2687 7.95728 15.0945L11.2073 12.5945C11.3918 12.4525 11.5 12.2329 11.5 12C11.5 11.7671 11.3918 11.5475 11.2073 11.4055L7.95728 8.90553Z\" fill=\"currentColor\"/><path d=\"M18 4H21.246C21.6624 4 22 4.33758 22 4.754V19.246C22 19.6624 21.6624 20 21.246 20H18V4Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVideoTrim;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA6wB,EAA7wB,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,CAAI,GAGvwB",
  "debugId": "D76C6CD0945D786C64756E2164756E21",
  "names": []
}