import * as React from 'react'; import { DATA_DRAGGABLE_PLACEHOLDER_REACT_PROP } from '../../hooks/useDraggableWithDomApi'; import type { HTMLAttributesWithRootRef } from '../../types'; import { RootComponent } from '../RootComponent/RootComponent'; import styles from './List.module.css'; export type ListProps = HTMLAttributesWithRootRef & { /** * Задает отступ между элементами. */ gap?: number; }; /** * @see https://vkui.io/components/cell#list */ export const List = ({ children, gap = 0, ...restProps }: ListProps): React.ReactNode => { return ( {children}
); };