uyem
Version:
WebRTC client-server SFU application
19 lines (18 loc) • 440 B
TypeScript
/// <reference types="react" />
export interface IconProps {
children: string;
width?: number;
height?: number;
color?: string;
className?: string;
}
declare function Icon({ color, children, width, height, className }: IconProps): JSX.Element;
declare namespace Icon {
var defaultProps: {
color: string;
width: number;
height: number;
className: string;
};
}
export default Icon;