import clsx from "clsx"; import styles from "./list.module.css"; type OLProps = React.OlHTMLAttributes; const OL: React.FC = ({ children, className, ...props }) => { return (
    {children}
); }; export default OL;