DocSpace-client/packages/shared/components/beta-badge/BetaBadge.props.ts
2024-02-13 14:05:47 +05:00

16 lines
389 B
TypeScript

import type { PlacesType } from "react-tooltip";
import type { TColorScheme } from "../../themes";
interface BetaBadgeProps {
forumLink?: string;
documentationEmail?: string;
currentColorScheme?: TColorScheme;
currentDeviceType?: "desktop" | "tablet" | "mobile";
place: PlacesType;
mobilePlace?: PlacesType;
withOutFeedbackLink?: boolean;
}
export default BetaBadgeProps;