UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

11 lines (10 loc) 349 B
import React from 'react'; export type ThemeCardVariantType = 'dark' | 'light' | 'system'; export interface ThemeCardProps { variant: ThemeCardVariantType; title?: string; checked?: boolean; isSystemDark?: boolean; onClick?: (variant: ThemeCardVariantType) => unknown; } export declare const ThemeCard: React.FC<ThemeCardProps>;