import { VSwitch } from 'vuetify/components'; import { SharedProps } from '../../types'; import { default as VInlineSwitch } from './VInlineSwitch.vue'; export interface VInlineSwitchProps extends Omit { density?: VSwitch['density']; falseIcon?: VSwitch['falseIcon']; falseValue?: VSwitch['falseValue']; trueValue?: VSwitch['trueValue']; } export type VInlineSwitch = InstanceType; export default VInlineSwitch;