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