UNPKG

shineout

Version:

A components library for React

8 lines (7 loc) 312 B
import { SwitchProps as UnStyledSwitchProps } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; export type BaseSwitchProps = Omit<UnStyledSwitchProps, 'jssStyle'>; /** * @title Switch */ export type SwitchProps = GetWithFieldProps<BaseSwitchProps, BaseSwitchProps['value']>;