UNPKG

@livepeer/react

Version:

React primitives for video apps.

25 lines (22 loc) 2.76 kB
import React from 'react'; type AssetProps = React.SVGProps<SVGSVGElement>; declare const PlayIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const PauseIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const EnterFullscreenIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const ExitFullscreenIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const PictureInPictureIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const LoadingIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const MuteIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const UnmuteIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const ClipIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const OfflineErrorIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const PrivateErrorIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const EnableVideoIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const DisableVideoIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const StopIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const StartScreenshareIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const StopScreenshareIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const EnableAudioIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; declare const DisableAudioIcon: React.ForwardRefExoticComponent<Omit<AssetProps, "ref"> & React.RefAttributes<SVGSVGElement>>; export { ClipIcon, DisableAudioIcon, DisableVideoIcon, EnableAudioIcon, EnableVideoIcon, EnterFullscreenIcon, ExitFullscreenIcon, LoadingIcon, MuteIcon, OfflineErrorIcon, PauseIcon, PictureInPictureIcon, PlayIcon, PrivateErrorIcon, SettingsIcon, StartScreenshareIcon, StopIcon, StopScreenshareIcon, UnmuteIcon };