import React from "react" import clsx from "clsx" type SectionDividerProps = { className?: string } const SectionDivider = ({ className }: SectionDividerProps) => { return (
) } export default SectionDivider