{
  "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.25V20H5.75C3.67893 20 2 18.3211 2 16.25V7.75C2 5.67893 3.67893 4 5.75 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 4H18.25C20.3211 4 22 5.67893 22 7.75V16.25C22 18.3211 20.3211 20 18.25 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,gBAAqwB,EAArwB,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0hBAA0hB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sFAAsF,KAAK,eAAc,CAAI,GAG/vB",
  "debugId": "208E75D91ED13E9064756E2164756E21",
  "names": []
}