import React from "react"; import { forwardRef } from "react"; import { useTreeApi } from "../context"; export const ListInnerElement = forwardRef(function InnerElement( { style, ...rest }, ref ) { const tree = useTreeApi(); const paddingTop = tree.props.padding ?? tree.props.paddingTop ?? 0; const paddingBottom = tree.props.padding ?? tree.props.paddingBottom ?? 0; return (
); });