@bothub-chat/ui
Version:
Bothub UI Components
12 lines (11 loc) • 380 B
TypeScript
import React from 'react';
import { ThemeCardVariantType } from './theme-card';
export interface ThemeCardsProps {
titleDark?: string;
titleLight?: string;
titleSystem?: string;
initialChecked?: ThemeCardVariantType;
isSystemDark?: boolean;
onChange?: (value: ThemeCardVariantType) => unknown;
}
export declare const ThemeCards: React.FC<ThemeCardsProps>;