import React from 'react'; import { VStack } from '../Stack'; import type { IListProps } from './types'; import { usePropsResolution } from '../../../hooks'; import { useHasResponsiveProps } from '../../../hooks/useHasResponsiveProps'; const UnorderedList = ({ children, ...props }: IListProps, ref?: any) => { const { _text, _hover, ...resolvedProps } = usePropsResolution('List', props); //TODO: refactor for responsive prop if (useHasResponsiveProps(props)) { return null; } // add props to children children = React.Children.map(children, (child: any, ind: number) => { return React.cloneElement( child, { index: ind, ul: true, _text: _text, _hover, ...child.props, }, child.props.children ); }); return ( {children} ); }; export default React.memo(React.forwardRef(UnorderedList));