import React from 'react'; import { VStack } from '../Stack'; import type { IListProps } from './types'; import { useThemeProps } from '../../../hooks'; const OrderedList = ({ style, children, spacing, ...props }: IListProps) => { const { _text, start, ...newProps } = useThemeProps('List', props); // add props to children children = React.Children.map(children, (child: any, ind: number) => { return React.cloneElement( child, { ol: true, index: ind, py: spacing, _text, start, ...child.props, }, child.props.children ); }); return ( {children} ); }; export default React.memo(OrderedList);