import { cx } from '@/styled-system/css' import { listGroup, type ListGroupVariantProps } from '@/styled-system/recipes/list-group' import { type MergeOmitting } from '@/types/utilities' import { type DetailedHTMLProps, type FC, type HTMLAttributes } from 'react' type ComposedInputProps = MergeOmitting, HTMLUListElement>, ListGroupVariantProps> const ListGroup: FC = ({ children, className, ...rest }) => { const [listGroupRecipeArgs, allOtherListGroupProps] = listGroup.splitVariantProps(rest) return ( ) } export default ListGroup