@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
12 lines (11 loc) • 491 B
TypeScript
import React from 'react';
import { LabelTypography, LabelColors } from '../Label';
import { ObjectValues } from '../../utils/typeHelpers/objectValues';
export interface PlaybackTimeProps {
className?: string;
time: number;
labelType?: ObjectValues<typeof LabelTypography>;
labelColor?: ObjectValues<typeof LabelColors>;
}
export declare const PlaybackTime: ({ className, time, labelType, labelColor, }: PlaybackTimeProps) => React.ReactElement;
export default PlaybackTime;