import React from 'react' type Props = { } & React.InputHTMLAttributes; export default function NightModeSwitch({ checked, onClick }: Props) { return (
A B
) }