import * as React from 'react';
import { Icon20CheckCircleOn, Icon24CheckCircleOn } from '@vkontakte/icons';
import type { HasRef, HasRootRef } from '../../../../types';
import { AdaptiveIconRenderer } from '../../../AdaptiveIconRenderer/AdaptiveIconRenderer';
import { RootComponent } from '../../../RootComponent/RootComponent';
import { VisuallyHidden } from '../../../VisuallyHidden/VisuallyHidden';
import styles from './Radio.module.css';
const adaptiveIcon = (
);
interface ActionSheetItemCheckedProps
extends React.InputHTMLAttributes,
HasRootRef,
HasRef {
/**
* Иконка для `checked` режима.
*/
children?: React.ReactNode;
}
export const Radio = ({
children = adaptiveIcon,
getRootRef,
getRef,
className,
style,
...restProps
}: ActionSheetItemCheckedProps): React.ReactNode => {
return (
{children}
);
};