anvil/striker-ui/types/ToggleSwitchProps.d.ts
2021-06-04 12:11:49 -04:00

7 lines
146 B
TypeScript

import { InputHTMLAttributes } from 'react';
type ToggleSwitchProps = Pick<
InputHTMLAttributes<HTMLInputElement>,
'checked' | 'disabled'
>;