import React from "react"; import styles from "./Separater.module.css"; function Separator({ width = "50%", thickness = "2px" }) { return (
); } export default Separator;