UNPKG

@moezx/react-darkreader

Version:

A React Hook for adding a dark / night mode to your site inspired by darkreader

7 lines (6 loc) 270 B
import { ReactSwitchProps } from 'react-switch'; import './Switch.css'; export interface SwitchProps extends ReactSwitchProps { styling?: 'docusaurus' | 'material' | 'github' | 'fluent'; } export default function Switch(SwitchProps: SwitchProps): JSX.Element;