softchatjs-react
Version:
Install the softchat-js SDKs
19 lines (16 loc) • 997 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
type Icon = {
size?: number;
color?: string;
};
declare function TrashIcon(props: Icon): react_jsx_runtime.JSX.Element;
declare const PlayIcon: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const PauseIcon: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const LockIcon: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const ChatIcon: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const VerifiedIcon: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const ChatPlus: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const BroadcastIcon: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const ArrowRight: (props: Icon) => react_jsx_runtime.JSX.Element;
declare const ChatIconOutlined: (props: Icon) => react_jsx_runtime.JSX.Element;
export { ArrowRight, BroadcastIcon, ChatIcon, ChatIconOutlined, ChatPlus, LockIcon, PauseIcon, PlayIcon, VerifiedIcon, TrashIcon as default };