@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.
11 lines (10 loc) • 656 B
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentsSidebarV2FilterButtonAppliedIcon } from './VeltCommentsSidebarV2FilterButtonAppliedIcon/VeltCommentsSidebarV2FilterButtonAppliedIcon';
export interface IVeltCommentsSidebarV2FilterButtonProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentsSidebarV2FilterButton extends React.FC<IVeltCommentsSidebarV2FilterButtonProps> {
AppliedIcon: IVeltCommentsSidebarV2FilterButtonAppliedIcon;
}
declare const VeltCommentsSidebarV2FilterButton: IVeltCommentsSidebarV2FilterButton;
export default VeltCommentsSidebarV2FilterButton;