summaryrefslogtreecommitdiff
path: root/src/components/LineDivider.js
blob: ce92f4ee4c06c815e4db2b26f0acf81030575d4c (plain)
1
2
3
4
5
6
7
const LineDivider = () => {
  return (
    <hr className="h-1.5 bg-gray_r-4 border-none"/>
  );
};

export default LineDivider;