Files
standardnotes-app-web/packages/web/src/javascripts/Components/Switch/SwitchProps.tsx
2022-06-07 07:18:41 -05:00

12 lines
226 B
TypeScript

import { ReactNode } from 'react'
export type SwitchProps = {
checked?: boolean
onChange?: (checked: boolean) => void
className?: string
children?: ReactNode
role?: string
disabled?: boolean
tabIndex?: number
}