@veltdev/react
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
13 lines (12 loc) • 728 B
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentsSidebarV2SearchIcon } from './VeltCommentsSidebarV2SearchIcon/VeltCommentsSidebarV2SearchIcon';
import { IVeltCommentsSidebarV2SearchInput } from './VeltCommentsSidebarV2SearchInput/VeltCommentsSidebarV2SearchInput';
export interface IVeltCommentsSidebarV2SearchProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentsSidebarV2Search extends React.FC<IVeltCommentsSidebarV2SearchProps> {
Icon: IVeltCommentsSidebarV2SearchIcon;
Input: IVeltCommentsSidebarV2SearchInput;
}
declare const VeltCommentsSidebarV2Search: IVeltCommentsSidebarV2Search;
export default VeltCommentsSidebarV2Search;