import classNames from 'classnames' import * as React from 'react' /** @public */ export type HTMLContainerProps = React.HTMLAttributes /** @public @react */ export function HTMLContainer({ children, className = '', ...rest }: HTMLContainerProps) { return (
{children}
) }