7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
import { InputHTMLAttributes } from 'react';
|
|
|
|
type ToggleSwitchProps = Pick<
|
|
InputHTMLAttributes<HTMLInputElement>,
|
|
'checked' | 'disabled'
|
|
>;
|