import React, { InputHTMLAttributes } from 'react';
import Tappable, { ACTIVE_EFFECT_DELAY } from '../Tappable/Tappable';
import getClassName from '../../helpers/getClassName';
import classNames from '../../lib/classNames';
import { IOS } from '../../lib/platform';
import Icon16Done from '@vkontakte/icons/dist/16/done';
import { HasFormLabels, HasRef, HasRootRef } from '../../types';
import usePlatform from '../../hooks/usePlatform';
export interface CheckboxProps extends
InputHTMLAttributes,
HasRootRef,
HasRef,
HasFormLabels {}
export const Checkbox: React.FunctionComponent = ({
children,
className,
style,
getRootRef,
getRef,
top,
bottom,
...restProps
}: CheckboxProps) => {
const platform = usePlatform();
return (
);
};
export default Checkbox;