import React, { FunctionComponent, InputHTMLAttributes } from 'react'; import getClassName from '../../helpers/getClassName'; import classNames from '../../lib/classNames'; import usePlatform from '../../hooks/usePlatform'; import { HasRef, HasRootRef } from '../../types'; export interface SwitchProps extends InputHTMLAttributes, HasRootRef, HasRef {} const Switch: FunctionComponent = ({ style, className, getRef, getRootRef, ...restProps }: SwitchProps) => { const platform = usePlatform(); return ( ); }; export default Switch;